Home
last modified time | relevance | path

Searched refs:strlen (Results 1 – 25 of 706) sorted by path

12345678910>>...29

/PHP-7.4/
H A DCODING_STANDARDS.md42 calculated with `strlen()`. Write your functions in such a way so that
46 doesn't have to be recalculated with `strlen()` (e.g. `php_addslashes()`).
/PHP-7.4/TSRM/
H A Dtsrm_win32.c126 ptc_sid_len = strlen(ptcSid); in tsrm_win32_get_path_sid_key()
210 if(!IS_ABSOLUTE_PATH(pathname, strlen(pathname)+1)) { in tsrm_win32_access()
277 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access()
283 bucket = realpath_cache_lookup(pathname, strlen(pathname), t); in tsrm_win32_access()
470 type_len = (int)strlen(type); in popen_ex()
483 cmd = (char*)malloc(strlen(command)+strlen(TWG(comspec))+sizeof(" /c ")+2); in popen_ex()
/PHP-7.4/Zend/
H A Dbench.php20 strlen("hallo");
342 $len = strlen($str);
367 $pad = str_repeat(" ", 24-strlen($name)-strlen($num));
380 $pad = str_repeat(" ", 24-strlen("Total")-strlen($num));
H A Dmicro_bench.php262 $pad = str_repeat(" ", 24-strlen($name)-strlen($num));
279 $pad = str_repeat(" ", 24-strlen("Total")-strlen($num));
/PHP-7.4/Zend/tests/
H A Dbug21478.phpt10 $consumed += strlen($bucket->data);
H A Dbug26696.phpt6 $len = strlen($str);
H A Dbug38779.phpt16 $this->position += strlen($ret);
20 return $this->position >= strlen($this->data);
23 return array('size' => strlen($this->data));
H A Dbug38779_1.phpt16 $this->position += strlen($ret);
20 return $this->position >= strlen($this->data);
H A Dbug64966.phpt15 test("strlen");
H A Dbug69315.phpt4 disable_functions=strlen,defined,call_user_func,constant,is_string
8 var_dump(function_exists("strlen"));
9 var_dump(is_callable("strlen"));
10 var_dump(strlen("xxx"));
13 var_dump(call_user_func("strlen"));
19 Warning: strlen() has been disabled for security reasons in %sbug69315.php on line %d
H A Dbug70681.phpt9 $c = (new ReflectionFunction('strlen'))->getClosure();
H A Dbug78340.phpt20 $this->pos+= strlen($chunk);
25 return $this->pos >= strlen($this->bytes);
35 'size' => strlen($this->bytes),
H A Dbug78406.phpt22 $consumed = strlen($this->data);
H A Dbug79783.phpt5 str_replace("a", "b", "c", strlen("d"));
H A Dbuiltin_in_write_context_error1.phpt6 strlen("foo")[0] = 1;
H A Dbuiltin_in_write_context_error2.phpt6 $ref =& strlen("foo");
H A Dclosure_061.phpt30 ['strlen', [
95 echo "$fnStr()\n" . str_repeat('-', strlen($fnStr) + 2), "\n\n";
132 strlen()
H A Dconcat_002.phpt18 var_dump(strlen($result));
H A Dexception_from_toString.phpt91 try { strlen($badStr); } catch (Exception $e) { echo "Exception\n"; }
H A Dget_defined_functions_basic.phpt37 if (!in_array("cos", $internal) || !in_array("strlen", $internal)) {
H A Dheredoc_015.phpt9 var_dump(strlen($test) == 0);
15 var_dump(strlen($test) == 1);
21 var_dump(strlen($test) == 1);
27 var_dump(strlen($test) == 1);
33 var_dump(strlen($test) == 2);
H A Dheredoc_016.phpt9 var_dump(strlen($test) == 0);
15 var_dump(strlen($test) == 1);
21 var_dump(strlen($test) == 1);
27 var_dump(strlen($test) == 1);
33 var_dump(strlen($test) == 2);
H A Dnowdoc_016.phpt9 var_dump(strlen($test));
15 var_dump(strlen($test));
21 var_dump(strlen($test));
27 var_dump(strlen($test));
33 var_dump(strlen($test));
H A Dns_013.phpt7 function strlen($x) {
11 echo strlen("Hello"),"\n";
13 test\ns1\strlen
/PHP-7.4/Zend/tests/generators/
H A Dgenerator_throwing_during_function_call.phpt12 strlen("foo", "bar", throwException());

Completed in 28 milliseconds

12345678910>>...29