Home
last modified time | relevance | path

Searched refs:a (Results 851 – 875 of 6311) sorted by relevance

1...<<31323334353637383940>>...253

/PHP-5.5/ext/pdo_sqlite/tests/
H A Dbug46542.phpt2 Bug #46542 Extending PDO class with a __call() function
12 $a = new A('sqlite:' . __DIR__ . '/dummy.db');
14 $a->truc();
15 $a->TRUC();
/PHP-5.5/ext/standard/tests/strings/
H A Dbug36148.phpt5 $values = array("a", "aa", "aaa", "aaaa");
7 $a = pack("H*", $value);
8 $b = unpack("H*", $a);
14 a: array(1) {
/PHP-5.5/ext/ereg/tests/
H A D005.phpt4 <?php $a="This is a nice and simple string";
5 echo ereg(".*(is).*(is).*",$a,$registers);
17 This is a nice and simple string
H A Dspliti_basic_002.phpt2 Test spliti() function : basic functionality - test a number of simple spliti, without specifying a
12 * Test a number of simple spliti, without specifying a limit
30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
122 --> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
150 --> Pattern: '\a'; match: 'a'
164 --> Pattern: '[0-9][^0-9]'; match: '2a'
234 --> Pattern: '[[:print:]]{3}'; match: ' a '
H A Dsplit_basic_002.phpt2 Test split() function : basic functionality - test a number of simple split, without specifying a l…
12 * Test a number of simple split, without specifying a limit
30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
122 --> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
150 --> Pattern: '\a'; match: 'a'
164 --> Pattern: '[0-9][^0-9]'; match: '2a'
234 --> Pattern: '[[:print:]]{3}'; match: ' a '
/PHP-5.5/Zend/tests/
H A Dobjects_021.phpt13 public function __set($a, $b) {
17 public function __get($a) {
21 public function __call($a, $b) {
31 ->a
H A Dbug32660.phpt20 $a = new A;
23 $c =& $a->whatever;
25 print_r($a);
26 $a->whatever =& $b;
28 print_r($a);
H A Dcall_user_func_002.phpt19 Warning: call_user_func() expects parameter 1 to be a valid callback, class 'foo' not found in %s o…
21 Warning: call_user_func() expects parameter 1 to be a valid callback, class '' not found in %s on l…
25 Warning: call_user_func() expects parameter 1 to be a valid callback, first array member is not a v…
29 Warning: call_user_func() expects parameter 1 to be a valid callback, first array member is not a v…
/PHP-5.5/sapi/cli/tests/
H A D009.phpt10 var_dump(`$php -n -a -r "echo hello;"`);
11 var_dump(`$php -n -r "echo hello;" -a`);
16 string(57) "Either execute direct code, process stdin or use a file.
18 string(57) "Either execute direct code, process stdin or use a file.
/PHP-5.5/tests/classes/
H A D__call_001.phpt11 function __call($m, $a) {
13 var_dump($a);
19 $a = $foo->test(1, '2', 3.4, true);
20 var_dump($a);
H A Dvisibility_005.phpt8 public $a=1;
45 a=>1
50 a=>1
53 a=>1
58 a=>1
/PHP-5.5/ext/spl/tests/
H A Drecursive_tree_iterator_setpostfix.phpt10 "a",
13 "a" => array(
69 [a] => \-ArrayPOSTFIX
80 [0] => | |-a
82 [a] => \-Array
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_getStaticVariables_basic.phpt9 static $a = 1;
15 static $a = 1;
19 $a = 54;
45 ["a"]=>
53 ["a"]=>
/PHP-5.5/ext/phar/tests/
H A Dbug46032.phpt9 $a = dirname(__FILE__) .'/mytest';
12 new phar($a);
15 var_dump($a);
18 new phar($a);
21 var_dump($a);
/PHP-5.5/ext/phar/tests/tar/
H A Dlinks2.phpt11 $a = new corrupt_tarmaker($fname, 'none');
12 $a->init();
13 $a->addFile('hardlink', 'internal/file.txt', array(
20 $a->close();
34 phar error: "%slinks2.tar" is a corrupted tar file - hard link to non-existent file "internal/file.…
/PHP-5.5/ext/phar/tests/zip/
H A Dunixzip.phpt2 Phar: test a zip archive created by unix "zip" command
8 $a = new PharData(dirname(__FILE__) . '/files/zip.zip');
9 foreach ($a as $b) {
17 if (isset($a['notempty/hi.txt'])) {
18 echo $a['notempty/hi.txt']->getPathName() . "\n";
/PHP-5.5/ext/ctype/tests/
H A D002.phpt14 for ($a=0;$a<128;$a++) {
15 $c = chr($a);
16 if($function($a)) $n1++;
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug30928.phpt10 public $a="a";
48 ["a"]=>
49 string(1) "a"
56 ["a"]=>
57 string(1) "a"
/PHP-5.5/ext/oci8/tests/
H A Ddrcp_conn_close1.phpt13 // Test will open a connection
16 // With oci_close() being a no-op, the same conneciton will be returned
19 echo "This is with a OCI_CONNECT\n";
33 echo "Both connections share a resource : OK \n";
41 This is with a OCI_CONNECT
44 Both connections share a resource : OK
H A Ddrcp_pconn_close1.phpt13 // Test will open a persistent connection
16 // With oci_close() being a no-op, the same conneciton will be returned
18 echo "This is with a OCI_PCONNECT\n";
32 echo "Both connections share a resource : OK \n";
40 This is with a OCI_PCONNECT
43 Both connections share a resource : OK
/PHP-5.5/ext/standard/tests/array/
H A Darray_reverse_basic1.phpt6 * Description: Return input as a new array with the order of the entries reversed
11 * Testing array_reverse() by giving a simple array for $array argument
17 $array = array("a", "green", "red", 'blue', 10, 13.33);
42 string(1) "a"
56 string(1) "a"
70 string(1) "a"
/PHP-5.5/ext/soap/tests/
H A Dtypemap008.phpt17 public $a="a";
23 … xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><a xsi:type="xsd:string">'.$book->a.'!</a><…
37 $book->a = "foo";
45 …p://www.w3.org/2001/XMLSchema-instance" xsi:type="ns1:book"><a xsi:type="xsd:string">foo!</a><b xs…
/PHP-5.5/ext/standard/tests/dir/
H A Dreaddir_variation6.phpt34 $a = array();
36 $a[] = $file;
38 sort($a);
39 foreach ($a as $file) {
44 $a = array();
46 $a[] = $file;
48 sort($a);
49 foreach ($a as $file) {
/PHP-5.5/ext/intl/tests/
H A Dlocale_get_primary_language.phpt26 'i-enochian', //(example of a grandfathered tag)
60 'zh-CN-a-myExt-x-private',
61 'en-a-myExt-b-another',
64 'a-DE',
65 'ar-a-aaa-b-bbb-a-ccc'
117 zh-CN-a-myExt-x-private: primary_language='zh'
118 en-a-myExt-b-another: primary_language='en'
120 a-DE: primary_language='a'
121 ar-a-aaa-b-bbb-a-ccc: primary_language='ar'
/PHP-5.5/ext/phar/
H A Dshortarc.php74 $a = realpath(Extract_Phar::$temp . DIRECTORY_SEPARATOR . $pt); variable
75 if (!$a || strlen(dirname($a)) < strlen(Extract_Phar::$temp)) {
80 $b = pathinfo($a);
83 header('Content-Length: ' . filesize($a));
84 readfile($a);
89 include $a;
93 highlight_file($a);
97 header('Content-Length: ' . filesize($a));
98 readfile($a);
117 $L = unpack('V', $a = (binary)fread($fp, 4));
[all …]

Completed in 46 milliseconds

1...<<31323334353637383940>>...253