Home
last modified time | relevance | path

Searched refs:a (Results 3276 – 3300 of 6891) sorted by relevance

1...<<131132133134135136137138139140>>...276

/PHP-8.3/tests/lang/
H A DforeachLoop.013.phpt12 $a[] = "v.$i";
17 var_dump($a);
20 foreach ($a as $k=>&$v) {
31 var_dump($a);
36 $transform = 'array_pop($a);';
43 $transform = 'array_shift($a);';
50 $transform = 'unset($a[$k]);';
297 ** Stuck in a loop! **
331 ** Stuck in a loop! **
369 ** Stuck in a loop! **
[all …]
/PHP-8.3/ext/standard/
H A Dcrypt_sha256.c46 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
49 # define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
101 uint32_t a = ctx->H[0]; in sha256_process_block() local
122 uint32_t a_save = a; in sha256_process_block()
154 uint32_t T2 = S0 (a) + Maj (a, b, c); in sha256_process_block()
161 b = a; in sha256_process_block()
162 a = T1 + T2; in sha256_process_block()
167 a += a_save; in sha256_process_block()
181 ctx->H[0] = a; in sha256_process_block()
/PHP-8.3/ext/standard/tests/file/
H A Dfseek_ftell_rewind_basic1.phpt2 Test fseek(), ftell() & rewind() functions : Basic functionality - all r and a modes
11 "a","ab","at","a+","a+b","a+t");
26 ,1,"bytes",".tmp"); //create a file with 512 bytes size
153 -- File opened in mode a --
201 -- File opened in mode a+ --
217 -- File opened in mode a+b --
233 -- File opened in mode a+t --
347 -- File opened in mode a --
395 -- File opened in mode a+ --
411 -- File opened in mode a+b --
[all …]
/PHP-8.3/ext/standard/tests/array/
H A Dkey_exists_variation2.phpt10 // there is not a index = 0 element
11 $a = array(1 => 'bar', 'foo' => 'baz');
12 var_dump(key_exists(0, $a));
24 // 'bar' has index = 0, netherless it is a string
H A Darray_chunk_variation6.phpt24 "array3" => array("a" => 1, "b" => 2, "c" => 3, "a" => 4, "d" => 5)
100 ["a"]=>
H A Darray_map_object2.phpt42 array_map(): Argument #1 ($callback) must be a valid callback or null, class "non-existent" not fou…
44 array_map(): Argument #1 ($callback) must be a valid callback or null, class SimpleClass does not h…
/PHP-8.3/ext/odbc/tests/
H A Dodbc_persistent_close.phpt2 odbc_pconnect(): Make sure closing a persistent connection works
31 // set a session specific variable via CONTEXT_INFO, if we get the same connection again, it should…
44 // this is a binary, so we get a bunch of nulls at the end
/PHP-8.3/ext/bz2/tests/
H A D004.phpt115 bzread(): supplied resource is not a valid stream resource
116 bzerror(): supplied resource is not a valid stream resource
117 bzerrstr(): supplied resource is not a valid stream resource
118 bzerrno(): supplied resource is not a valid stream resource
/PHP-8.3/Zend/tests/
H A Dclosure_046.phpt7 * the invariants that, for non-static closures, having a scope is equivalent
8 * to having a bound instance. */
20 $a = new A();
21 $nonstaticScoped = $a->getClosure();
/PHP-8.3/ext/standard/tests/file/windows_links/
H A Dbug48746_1.phpt31 file_put_contents("mklink_junction\\a.php", "<?php echo \"I am included.\n\" ?>");
32 include_once "mklink_junction\\a.php";
37 var_dump(is_file("mklink_junction\\a.php"));
42 unlink("mklink_junction\\a.php");
/PHP-8.3/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation2.phpt13 fwrite($fp, "a line of data\n");
21 echo "\n\nRead a line of the file, causing data to be buffered:\n";
67 Read a line of the file, causing data to be buffered:
68 string(15) "a line of data
/PHP-8.3/ext/standard/tests/general_functions/
H A Disset_basic1.phpt12 $a = array(1,2,3,4,5);
21 echo "Array test: " . (isset($a) ? "YES": "NO") . "\n";
28 unset($i, $f, $s, $a, $b, $n, $obj, $res);
33 echo "Array test: " . (isset($a) ? "YES": "NO") . "\n";
/PHP-8.3/ext/pdo_mysql/tests/
H A Dbug68371.phpt45 foreach ($attrs as $a => $vals) {
49 var_dump($pdo->getAttribute($a));
51 $pdo->setAttribute($a, $v);
52 if ($pdo->getAttribute($a) === $v) {
/PHP-8.3/ext/tokenizer/tests/
H A Dtoken_get_all_variation13.phpt28 private var $a;
34 abstract public function myFunction($a);
39 function myFunction($a)
41 $a = new ChildClass();
42 if($a instanceof MyClass)
339 string(2) "$a"
647 string(2) "$a"
871 string(2) "$a"
904 string(2) "$a"
987 string(2) "$a"
/PHP-8.3/
H A DREADME.md2 <a href="https://php.net">
7 </a>
12 PHP is a popular general-purpose scripting language that is especially suited to
41 For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
42 a default build, you will additionally need libxml2 and libsqlite3.
58 `./configure --help` for a full list of options.
82 Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
90 After a successful build (and test), PHP may be installed with:
107 welcome by forking the repository and sending a pull request.
117 Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
/PHP-8.3/ext/gd/libgd/
H A Dgd_io_ss.c46 static void sinkPutchar (gdIOCtx * ctx, int a);
132 static void sinkPutchar (gdIOCtx * ctx, int a) in sinkPutchar() argument
136 b = a; in sinkPutchar()
/PHP-8.3/ext/opcache/tests/jit/
H A Dfetch_dim_r_004.phpt14 $a = "ABCDEF";
16 var_dump($a[$n]);
30 $x="a";
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_ssl_set.phpt2 mysqli_ssl_set() - test is a stub!
7 die("skip test is a stub!");
26 'The pathname to a directory that contains trusted SSL CA certificates in PEM format.',
/PHP-8.3/ext/phar/tests/
H A Dphar_begin_setstub_commit.phpt15 $p['a.php'] = '<?php var_dump("Hello");';
17 include 'phar://phar_begin_setstub_commit.phar/a.php';
26 include 'phar://phar_begin_setstub_commit.phar/a.php';
H A Dphar_oo_005.phpt33 string(14) "phar://*/a.php"
34 string(14) "phar://*/a.php"
36 string(5) "a.php"
/PHP-8.3/ext/reflection/tests/
H A Dclosures_001.phpt6 $closure = function($a, $b = 0) { };
33 $rp = new ReflectionParameter(array($closure, '__invoke'), 'a');
44 $rp = new ReflectionParameter($closure, 'a');
/PHP-8.3/main/
H A Dbuild-defs.h.in9 | If you did not receive a copy of the PHP license and are unable to |
10 | obtain it through the world-wide-web, please send a note to |
11 | license@php.net so we can mail you a copy immediately. |
/PHP-8.3/ext/phar/tests/tar/
H A Dphar_begin_setstub_commit.phpt15 $p['a.php'] = '<?php var_dump("Hello");';
17 include 'phar://phar_begin_setstub_commit.phar/a.php';
26 include 'phar://phar_begin_setstub_commit.phar/a.php';
/PHP-8.3/ext/soap/tests/schema/
H A Dschema054.phpt12 test_schema($schema,'type="apache:Map" xmlns:apache="http://xml.apache.org/xml-soap"',array('a'=>12…
17 …dy><ns1:test><testParam xsi:type="ns2:Map"><item><key xsi:type="xsd:string">a</key><value xsi:type…
19 ["a"]=>
H A Dschema055.phpt19 test_schema($schema,'type="testType"',array('a'=>123,'b'=>123.5));
24 …dy><ns1:test><testParam xsi:type="ns2:Map"><item><key xsi:type="xsd:string">a</key><value xsi:type…
26 ["a"]=>

Completed in 34 milliseconds

1...<<131132133134135136137138139140>>...276