Home
last modified time | relevance | path

Searched refs:in_array (Results 1 – 25 of 148) sorted by last modified time

123456

/php-src/ext/standard/
H A Darray.c1748 PHP_FUNCTION(in_array) in PHP_FUNCTION() argument
1754 ZEND_FRAMELESS_FUNCTION(in_array, 2)
1766 ZEND_FRAMELESS_FUNCTION(in_array, 3)
H A Dbasic_functions.stub.php1656 function in_array(mixed $needle, array $haystack, bool $strict = false): bool {} function
H A Dbasic_functions_arginfo.h2219 ZEND_FRAMELESS_FUNCTION(in_array, 2);
2220 ZEND_FRAMELESS_FUNCTION(in_array, 3);
2222 { ZEND_FRAMELESS_FUNCTION_NAME(in_array, 2), 2 },
2223 { ZEND_FRAMELESS_FUNCTION_NAME(in_array, 3), 3 },
2356 ZEND_FUNCTION(in_array);
/php-src/ext/mysqli/
H A Dmysqli_nonapi.c640 static int mysqlnd_zval_array_to_mysqlnd_array(zval *in_array, MYSQLND ***out_array) argument
645 if (Z_TYPE_P(in_array) != IS_ARRAY) {
648 *out_array = ecalloc(zend_hash_num_elements(Z_ARRVAL_P(in_array)) + 1, sizeof(MYSQLND *));
649 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(in_array), elem) {
676 static zend_result mysqlnd_zval_array_from_mysqlnd_array(MYSQLND **in_array, zval *out_array) argument
678 MYSQLND **p = in_array;
717 static void mysqlnd_dont_poll_zval_array_from_mysqlnd_array(MYSQLND **in_array, zval *in_zval_array… argument
719 MYSQLND **p = in_array;
723 if (in_array) {
/php-src/build/
H A Dgen_stub.php370 …return $this->isBuiltin && in_array($this->name, ["null", "false", "true", "bool", "int", "float"]…
1202 if (!in_array($refcount, ReturnInfo::REFCOUNTS, true)) {
4768 if ($tag->value && !in_array((int) $tag->value, ALL_PHP_VERSION_IDS, true)) {
/php-src/ext/phar/phar/
H A Dpharcommand.inc162 if (!in_array('OpenSSL', $hash_avail)) {
167 if (in_array($key, $hash_avail)) {
405 if ($arg && !in_array('OpenSSL', $hash_avail))
523 $s .= "if (!in_array('phar', stream_get_wrappers())) {\n";
/php-src/ext/mysqli/tests/
H A Dmysqli_stmt_get_result2.phpt121 if (!in_array($res->type, array(MYSQLI_STORE_RESULT, MYSQLI_USE_RESULT))) {
H A Dmysqli_get_charset.phpt52 !in_array(gettype($charset->charset), array("string", "unicode")) ||
56 !in_array(gettype($charset->collation), array("string", "unicode")) ||
/php-src/Zend/tests/
H A Dframeless_jmp_001.phpt7 return in_array($needle, $haystack, true);
H A Dframeless_throwing_destructor.phpt11 in_array(new Foo(), [new Bar()], true);
/php-src/ext/pdo_dblib/tests/
H A Dstringify_uniqueidentifier.phpt9 if (in_array($db->getAttribute(PDO::DBLIB_ATTR_TDS_VERSION), ['4.2', '4.6'])) die('skip feature uns…
H A Dbug_73396.phpt9 if (in_array($db->getAttribute(PDO::DBLIB_ATTR_TDS_VERSION), ['4.2', '4.6', '5.0', '6.0', '7.0'])) …
H A Ddatetime2.phpt9 if (in_array($db->getAttribute(PDO::DBLIB_ATTR_TDS_VERSION), ['4.2', '4.6', '5.0', '6.0', '7.0', '7…
/php-src/ext/pcntl/tests/
H A D002.phpt27 var_dump(in_array(SIGCHLD, $oldset));
28 var_dump(in_array(SIGTERM, $oldset));
/php-src/ext/standard/tests/file/
H A Dfile.inc611 if ( ! in_array( $fields[$index], $stat_time_diff_keys ) ) {
/php-src/ext/pgsql/tests/
H A Dbug71998.phpt69 if (!$r && in_array($ip, $bad)) {
/php-src/ext/zlib/tests/
H A Dzlib_wrapper_level.phpt7 in_array('compress.zlib', stream_get_wrappers()) || print 'skip No zlib wrapper';
/php-src/ext/sodium/tests/
H A Dphp_password_hash_argon2id.phpt10 if (!in_array('argon2id', password_algos(), true /* strict */)) {
H A Dphp_password_verify.phpt15 if (!in_array($algo, password_algos(), true /* strict */)) {
/php-src/ext/phar/tests/tar/
H A Dphar_setsignaturealgo2.phpt8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
/php-src/ext/phar/tests/zip/
H A Dphar_setsignaturealgo2.phpt8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
/php-src/ext/mysqli/tests/functions/
H A Dmysqli_set_charset.phpt37 if (in_array($charset, UNSUPPORTED_ENCODINGS, true)) {
/php-src/ext/standard/tests/network/
H A Dgh12190.phpt6 if (!in_array('https', stream_get_wrappers())) die('skip: https wrapper is required');
/php-src/win32/build/
H A Dmkdist.php74 $is_pecl = in_array($module, $pecl_targets);
89 if (((in_array($depbase, $sapi_targets) ||
90 in_array($depbase, $ext_targets) || in_array($depbase, $pecl_targets)) ||
95 if (in_array(basename($dep), $no_dist)) {
111 if (!in_array($dep, $pecl_dll_deps)) {
115 if (!in_array($dep, $extra_dll_deps)) {
120 …if (!isset($per_module_deps[basename($module)]) || !in_array($dep, $per_module_deps[basename($modu…
299 if (in_array($modulename, $pecl_targets))
394 if (in_array($dll, $extra_dll_deps)) {
/php-src/ext/standard/tests/general_functions/
H A Ddl-check-enabled.phpt9 if (!in_array(php_sapi_name(), $enabled_sapi)) {

Completed in 77 milliseconds

123456