PHP Velho Oeste 2024

For Each

COM/OLE IEnumVariant içeriği üzerinde foreach deyimi kullanılabilir. Bu, basit bir şekilde, VB/ASP kodunda For Each kullanılan yerlerde foreach kullanılabilir demektir.

Örnek 1 ASP'de For Each

<%
Set domainObject = GetObject("WinNT://Domain")
For Each obj in domainObject
  Response.Write obj.Name & "<br />"
Next
%>

Örnek 2 PHP'de foreach

<?php
$domainObject
= new COM("WinNT://Domain");
foreach (
$domainObject as $obj) {
echo
$obj->Name . "<br />";
}
?>

add a note add a note

User Contributed Notes 1 note

up
0
szir at sch dot bme dot hu
12 years ago
As described in the PHP 5 COM changes article: http://devzone.zend.com/node/view/id/762
You not just "may use foreach statement", but you have to, because $domainObject->Next() is not available in PHP 5 (syntax has been dropped, not backwards compatible)
To Top