Home
last modified time | relevance | path

Searched refs:script (Results 1 – 25 of 178) sorted by relevance

12345678

/PHP-8.1/ext/intl/tests/
H A Dlocale_get_script.phpt87 root: script=''
89 Hindi: script=''
90 de: script=''
91 fr: script=''
92 ja: script=''
100 sl-rozaj: script=''
105 de-DE: script=''
106 en-US: script=''
107 es-419: script=''
110 zh-min: script=''
[all …]
H A Dlocale_parse_locale2.phpt125 language : 'zh' , script : 'Hant' ,
128 language : 'zh' , script : 'Hans' ,
131 language : 'sr' , script : 'Cyrl' ,
134 language : 'sr' , script : 'Latn' ,
137 language : 'zh' , script : 'Hans' , region : 'CN' ,
140 language : 'sr' , script : 'Latn' , region : 'CS' ,
155 language : 'sl' , script : 'Latn' , region : 'IT' , variant0 : 'NEDIS' ,
170 language : 'az' , script : 'Arab' , private0 : 'AZE' , private1 : 'derbend' ,
179 language : 'qaa' , script : 'Qaaa' , region : 'QM' , private0 : 'southern' ,
182 language : 'sr' , script : 'Latn' , region : 'QM' ,
[all …]
/PHP-8.1/ext/filter/tests/
H A D052.phpt12 $data = array ('bar' => array ('fu<script>bar', 'bar<script>fu') );
25 string(21) "fu&#60;script&#62;bar"
27 string(21) "bar&#60;script&#62;fu"
34 string(13) "fu<script>bar"
36 string(13) "bar<script>fu"
52 string(13) "fu<script>bar"
54 string(13) "bar<script>fu"
70 string(13) "fu<script>bar"
72 string(13) "bar<script>fu"
H A D042.phpt7 $var = 'XYZ< script>alert(/ext/filter+bypass/);< /script>ABC';
12 script>alert(/ext/filter+bypass/);<
13 /script>ABC';
/PHP-8.1/ext/opcache/
H A Dzend_file_cache.c122 (((char*)(ptr) >= (char*)script->mem && (char*)(ptr) <= (char*)script->mem + script->size) || \
904 info->script_offset = (char*)script - (char*)script->mem;
907 memcpy(buf, script->mem, script->size);
1066 write(fd, buf, script->size) != script->size ||
1233 if (op_array != &script->script.main_op_array) {
1250 if (op_array != &script->script.main_op_array) {
1677 UNSERIALIZE_STR(script->script.filename);
1679 zend_file_cache_unserialize_hash(&script->script.class_table,
1683 zend_file_cache_unserialize_op_array(&script->script.main_op_array, script, buf);
1868 zend_accel_hash_update(&ZCSG(hash), script->script.filename, 0, script);
[all …]
H A Dzend_accelerator_util_funcs.c51 persistent_script->script.function_table.nNumUsed = 0; in free_persistent_script()
52 persistent_script->script.class_table.nNumUsed = 0; in free_persistent_script()
54 destroy_op_array(&persistent_script->script.main_op_array); in free_persistent_script()
58 zend_hash_destroy(&persistent_script->script.class_table); in free_persistent_script()
60 if (persistent_script->script.filename) { in free_persistent_script()
79 dst = &script->function_table; in zend_accel_move_user_functions()
80 filename = script->main_op_array.filename; in zend_accel_move_user_functions()
110 dst = &script->class_table; in zend_accel_move_user_classes()
111 filename = script->main_op_array.filename; in zend_accel_move_user_classes()
223 *op_array = persistent_script->script.main_op_array; in zend_accel_load_script()
[all …]
H A DZendAccelerator.c3642 zend_string_hash_val(script->script.filename);
3643 script->script.main_op_array = *op_array;
3648 zend_hash_add_ptr(preload_scripts, script->script.filename, script);
4128 zend_op *opline = script->script.main_op_array.opcodes;
4334 zend_script *script = &ZCSG(preload_script)->script; local
4530 script->script.main_op_array.last = 1;
4531 script->script.main_op_array.last_literal = 1;
4535 script->script.main_op_array.literals = (zval*)(script->script.main_op_array.opcodes + 1);
4537 ZVAL_NULL(script->script.main_op_array.literals);
4542 …ZEND_PASS_TWO_UPDATE_CONSTANT(&script->script.main_op_array, script->script.main_op_array.opcodes,…
[all …]
H A Dzend_persist.h25 uint32_t zend_accel_script_persist_calc(zend_persistent_script *script, int for_shm);
26 zend_persistent_script *zend_accel_script_persist(zend_persistent_script *script, int for_shm);
H A Dzend_accelerator_util_funcs.h31 void zend_accel_move_user_functions(HashTable *str, uint32_t count, zend_script *script);
32 void zend_accel_move_user_classes(HashTable *str, uint32_t count, zend_script *script);
H A Dzend_persist.c1299 zend_accel_store_interned_string(script->script.filename); in zend_accel_script_persist()
1316 zend_accel_persist_class_table(&script->script.class_table); in zend_accel_script_persist()
1317 zend_hash_persist(&script->script.function_table); in zend_accel_script_persist()
1318 ZEND_HASH_FOREACH_BUCKET(&script->script.function_table, p) { in zend_accel_script_persist()
1323 zend_persist_op_array_ex(&script->script.main_op_array, script); in zend_accel_script_persist()
1325 ZEND_MAP_PTR_INIT(script->script.main_op_array.run_time_cache, NULL); in zend_accel_script_persist()
1326 if (script->script.main_op_array.static_variables) { in zend_accel_script_persist()
1331 zend_jit_op_array(&script->script.main_op_array, &script->script); in zend_accel_script_persist()
1335 script->warnings = zend_persist_warnings(script->num_warnings, script->warnings); in zend_accel_script_persist()
1344 zend_jit_script(&script->script); in zend_accel_script_persist()
[all …]
/PHP-8.1/ext/tokenizer/tests/
H A Dtoken_get_all_variation19.phpt2 Reconstructing a script using token_get_all()
11 // A php script to test token_get_all()
35 $script = "";
36 // reconstruct a script (without open/close tags) from the token array
45 $script .= $token[1];
47 $script .= $token;
51 var_dump($script);
53 eval($script);
59 // A php script to test token_get_all()
/PHP-8.1/ext/standard/tests/math/
H A Dlcg_value_basic.phpt6 echo "MATHS test script started\n";
24 echo "MATHS test script completed\n";
28 MATHS test script started
32 MATHS test script completed
/PHP-8.1/ext/standard/tests/url/
H A Dbug54180.phpt6 var_dump(parse_url("http://example.com/path/script.html?t=1#fragment?data"));
7 var_dump(parse_url("http://example.com/path/script.html#fragment?data"));
17 string(17) "/path/script.html"
29 string(17) "/path/script.html"
/PHP-8.1/win32/build/
H A Dphpize.bat3 cscript /nologo /e:jscript %PHP_BUILDCONF_PATH%\script\phpize.js %*
5 echo Error generating configure script, configure script was not copied
/PHP-8.1/ext/standard/tests/general_functions/
H A Dbug69646.phpt24 $script = __DIR__ . DIRECTORY_SEPARATOR . "arginfo.php";
25 file_put_contents($script, $helper_script);
27 $cmd = PHP_BINARY . " " . $script . " " . escapeshellarg($a) . " " . escapeshellarg($b);
31 unlink($script);
/PHP-8.1/sapi/cli/tests/
H A Dbug64529.phpt22 $script = __DIR__ . "/expect.sh";
61 file_put_contents($script, $expect_script);
63 system($expect_executable . " " . $script . " " . $php_executable);
65 @unlink($script);
/PHP-8.1/Zend/Optimizer/
H A Dzend_call_graph.h63 ZEND_API int zend_build_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *call_g…
64 ZEND_API void zend_analyze_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *cal…
66 ZEND_API int zend_analyze_calls(zend_arena **arena, zend_script *script, uint32_t build_flags, zend…
H A Dzend_call_graph.c46 ZEND_API int zend_analyze_calls(zend_arena **arena, zend_script *script, uint32_t build_flags, zend… in zend_analyze_calls() argument
66 script, op_array, opline, &is_prototype); in zend_analyze_calls()
225 ZEND_API int zend_build_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *call_g… in zend_build_call_graph() argument
228 zend_foreach_op_array(script, zend_op_array_calc, call_graph); in zend_build_call_graph()
233 zend_foreach_op_array(script, zend_op_array_collect, call_graph); in zend_build_call_graph()
239 ZEND_API void zend_analyze_call_graph(zend_arena **arena, zend_script *script, zend_call_graph *cal… in zend_analyze_call_graph() argument
244 zend_analyze_calls(arena, script, 0, call_graph->op_arrays[i], call_graph->func_infos + i); in zend_analyze_call_graph()
/PHP-8.1/ext/standard/tests/strings/
H A Dstrip_tags_basic1.phpt17 "<script language=\"PHP\"> echo hello </script>",
18 '<script language=\"PHP\"> echo hello </script>',
/PHP-8.1/ext/standard/tests/file/
H A Dfopen_variation12.phpt32 echo "Not created in script dir\n";
35 echo "created in script dir\n";
43 Not created in script dir
H A Dfopen_variation5.phpt98 // create a file in the script directory
100 fwrite($h, "in script dir");
103 //should read the file in script dir
124 in script dir
131 in script dir
138 in script dir
H A Dfopen_variation8.phpt97 // create a file in the script directory
99 fwrite($h, "in script dir");
102 //should read the file in script dir
123 in script dir
130 in script dir
137 in script dir
/PHP-8.1/
H A Dbuildconf.bat7 IF NOT EXIST %PHP_BUILDCONF_PATH% (echo Error generating configure script, configure script was not…
/PHP-8.1/tests/run-test/
H A Dtest010.phpt11 use this to input some thing to the php script
14 use this to input some thing to the php script
/PHP-8.1/ext/standard/tests/serialize/
H A Dserialization_objects_005.phpt102 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
104 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
106 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
109 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
111 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
114 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
116 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
118 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
120 The script tried to modify a property on an incomplete object. Please ensure that the class definit…
122 Warning: main(): The script tried to access a property on an incomplete object. Please ensure that …
[all …]

Completed in 70 milliseconds

12345678