Home
last modified time | relevance | path

Searched refs:new (Results 376 – 400 of 4661) sorted by relevance

1...<<11121314151617181920>>...187

/PHP-5.4/ext/phar/tests/
H A Dalias_acrobatics.phpt13 $p = new Phar($fname);
18 $a = new Phar($fname2, 0, 'foo');
25 $a = new Phar($fname2);
30 $b = new Phar($fname, 0, 'another');
/PHP-5.4/ext/imap/tests/
H A Dimap_body_basic.phpt18 echo "Create a new mailbox for test\n";
25 echo "Msg Count in new mailbox: ". $check->Nmsgs . "\n";
42 Create a new mailbox for test
45 Msg Count in new mailbox: 1
/PHP-5.4/ext/spl/tests/
H A Dbug46088.phpt6 $x = new RegexIterator(new ArrayIterator(range(1, 10)), '/\d/');
H A Dbug65328.phpt21 $this->head = $head ? : new Node('HEAD');
56 $result = new \SplStack();
73 return new \RecursiveIteratorIterator(
193 throw new \RuntimeException("Node uid is not unique in assigned node tree");
211 $tree = new Tree($headNode);
285 return new \RecursiveArrayIterator($this->children);
289 $tree = new Tree();
290 $node1 = new Node('value1', 1);
292 $node2 = new Node('value2', 2);
H A DarrayObject_magicMethods2.phpt31 $obj = new UsesMagic;
33 $ao = new ArrayObject($obj);
36 $ao->dynamic = 'new';
37 $ao->dynamic = 'new.changed';
88 string(11) "new.changed"
107 string(11) "new.changed"
124 string(11) "new.changed"
158 string(11) "new.changed"
H A DarrayObject_count_basic1.phpt12 $c = new C;
13 $ao = new ArrayObject;
40 $c = new D;
41 $ao = new ArrayIterator;
H A Dpqueue_001.phpt5 $pq = new SplPriorityQueue();
24 $pq1 = new SplPriorityQueue();
37 $pq2 = new SplPriorityQueue();
50 $pq3 = new SplPriorityQueue();
/PHP-5.4/ext/reflection/tests/
H A DReflectionClass_newInstanceWithoutConstructor.phpt15 $class = new ReflectionClass('Foo');
18 $class = new ReflectionClass('StdClass');
21 $class = new ReflectionClass('DateTime');
H A D004.phpt13 $b = new b();
15 $a=new ReflectionClass("a");
31 $b = new a();
/PHP-5.4/ext/soap/tests/bugs/
H A Dbug42151.phpt9 $foo = @ new SoapClient('httpx://');
21 $bar = new bar();
22 $foo = new foo();
/PHP-5.4/Zend/tests/
H A Dbug38624.phpt14 throw new Exception( "doesn't work" );
19 throw new Exception( "doesn't work" );
24 $impl = new impl();
H A Dlist_001.phpt6 list($a, list($b)) = array(new stdclass, array(new stdclass));
/PHP-5.4/ext/date/tests/
H A DDateTimeZone_getName_basic1.phpt16 $tz1 = new DateTimeZone("Europe/London");
19 $tz2 = new DateTimeZone("America/New_York");
22 $tz3 = new DateTimeZone("America/Los_Angeles");
H A DDateTimeZone_compare_basic1.phpt24 $obj1 = new DateTimeZone("Europe/London");
25 $obj2 = new DateTimeZoneExt1("Europe/London");
26 $obj3 = new DateTimeZoneExt2("Europe/London");
27 $obj4 = new DateTimeZoneExt3("Europe/London");
/PHP-5.4/ext/snmp/tests/
H A Dsnmp-object.phpt20 $session = new SNMP(SNMP::VERSION_1, $hostname, $community, $timeout, $retries);
28 $session = new SNMP(SNMP::VERSION_2c, $hostname, $community, $timeout, $retries);
34 $session = new SNMP(SNMP::VERSION_2c, $hostname, $community, $timeout, $retries);
43 $session = new SNMP(SNMP::VERSION_2c, $hostname, $community, $timeout, $retries);
52 $session = new SNMP(SNMP::VERSION_2c, $hostname, $community, $timeout, $retries);
61 $session = new SNMP(SNMP::VERSION_2c, $hostname, $community, $timeout, $retries);
70 $session = new SNMP(SNMP::VERSION_2c, $hostname, $community, $timeout, $retries);
110 $session = new SNMP(SNMP::VERSION_3, $hostname, $rwuser, $timeout, $retries);
118 $session = new SNMP(SNMP::VERSION_3, $hostname, $rwuser, $timeout, $retries);
134 $session = new SNMP(SNMP::VERSION_3, $hostname, $rwuser, $timeout, $retries);
[all …]
/PHP-5.4/ext/soap/tests/interop/Round2/Base/
H A Dr2_base_011s.phpt7 $param = new SoapParam(new SoapVar(array(
8 new SoapVar(1,XSD_INT),
9 new SoapVar(234324324,XSD_INT),
10 new SoapVar(2,XSD_INT)
12 $client = new SoapClient(NULL,array("location"=>"test://","uri"=>"http://soapinterop.org/","trace"=…
H A Dr2_base_013s.phpt9 $param = new SoapParam(new SoapVar(array(
10 new SoapVar(1.3223, XSD_FLOAT),
11 new SoapVar(34.2, XSD_FLOAT),
12 new SoapVar(325.325, XSD_FLOAT)
14 $client = new SoapClient(NULL,array("location"=>"test://","uri"=>"http://soapinterop.org/","trace"=…
H A Dr2_base_014s.phpt9 $param = new SoapParam(new SoapVar(array(
10 new SoapVar('arg', XSD_STRING, null, null, 'varString'),
11 new SoapVar('34', XSD_INT, null, null, 'varInt'),
12 new SoapVar('325.325', XSD_FLOAT, null, null, 'varFloat')
14 $client = new SoapClient(NULL,array("location"=>"test://","uri"=>"http://soapinterop.org/","trace"=…
/PHP-5.4/ext/dom/tests/
H A Ddomchardata.phpt9 $dom = new DOMDocument;
22 $comment = new DOMComment('Testing character data and extending nodes');
32 $cdata = new DOMCDataSection('Chars: <>&"');
40 $comment = new DOMComment('instructions');
54 $text = new DOMText('some text characters');
/PHP-5.4/ext/phar/tests/tar/
H A Dalias_acrobatics.phpt13 $p = new Phar($fname);
18 $a = new Phar($fname2, 0, 'foo');
25 $a = new Phar($fname2);
30 $b = new Phar($fname, 0, 'another');
/PHP-5.4/ext/phar/tests/zip/
H A Dalias_acrobatics.phpt13 $p = new Phar($fname);
18 $a = new Phar($fname2, 0, 'foo');
25 $a = new Phar($fname2);
30 $b = new Phar($fname, 0, 'another');
/PHP-5.4/Zend/tests/traits/
H A Dbug55554b.phpt25 $o = new OverridingIsSilent1;
37 $o = new OverridingIsSilent2;
48 $o = new ReportCollision;
/PHP-5.4/ext/xmlreader/tests/
H A D002.phpt13 $reader = new XMLReader();
16 $reader = new XMLReader();
29 $reader = new XMLReader();
/PHP-5.4/ext/xsl/tests/
H A Dbug26384.phpt7 $dom = new domDocument;
13 $xsl = new domDocument;
19 $proc = new xsltprocessor;
H A Dbug53965.phpt12 $xml = new DOMDocument();
15 $xsl = new DOMDocument();
18 $proc = new XSLTProcessor;

Completed in 74 milliseconds

1...<<11121314151617181920>>...187