Home
last modified time | relevance | path

Searched refs:code (Results 101 – 125 of 798) sorted by relevance

12345678910>>...32

/php-src/docs/source/introduction/ides/
H A Dvisual-studio-code.rst10 An IDE can make navigating large code bases tremendously easier. Visual Studio Code is a popular and
12 auto-completion and a debugger. Check the `official website <https://code.visualstudio.com/>`__ for
38 .. code:: bash
48 .. code:: json
60 and code completion but no syntax highlighting and no debugger. As such, it should be used in
64 .. code:: json
77 .. _clangd extension: https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.v…
79 .. code:: json
96 .. code:: json
128 Set any breakpoint in your C code, open a ``php`` (or ``phpt``) file and start debugging from the
/php-src/sapi/cli/tests/
H A D016.phpt56 foreach ($codes as $key => $code) {
58 $code = escapeshellarg($code);
59 echo `echo $code | $php -a`, "\n";
H A D014.phpt11 $code = '
28 file_put_contents($filename, $code);
39 string(1158) "<pre><code style="color: #000000">
54 </span></code></pre>"
H A D009.phpt18 string(57) "Either execute direct code, process stdin or use a file.
20 string(57) "Either execute direct code, process stdin or use a file.
/php-src/ext/tokenizer/
H A Dtokenizer.stub.php11 function token_get_all(string $code, int $flags = 0): array {} argument
23 public static function tokenize(string $code, int $flags = 0): array {} argument
/php-src/Zend/tests/type_declarations/
H A Dweak_call_strict.phpt2 strict_types=0 code calling strict_types=1 code
H A Dweak_explicit_call_strict.phpt2 Explicitly strict_types=0 code calling strict_types=1 code
/php-src/Zend/tests/
H A Dbug42767.phpt14 <pre><code style="color: #000000"><span style="color: #0000BB">&lt;?php </span><span style="color: …
H A Dmethods-on-non-objects-catch.phpt5 set_error_handler(function($code, $message) {
6 var_dump($code, $message);
H A Dbug71248.phpt19 $code = <<<'PHP'
24 eval($code);
H A Ddynamic_class_const_fetch.phpt10 function test($code) {
12 var_dump(eval($code));
48 Warning: Undefined variable $barr in %s : eval()'d code on line %d
51 Warning: Undefined variable $barr in %s : eval()'d code on line %d
/php-src/ext/com_dotnet/
H A Dcom_misc.c28 void php_com_throw_exception(HRESULT code, char *message) in php_com_throw_exception() argument
32 message = php_win32_error_to_msg(code); in php_com_throw_exception()
36 zend_throw_exception(php_com_exception_class_entry, message, (zend_long)(uint32_t)code); in php_com_throw_exception()
38 zend_throw_exception(php_com_exception_class_entry, message, (zend_long)code); in php_com_throw_exception()
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst6 compiled into machine-readable code ahead of time. Instead, the source files are read, processed and
27 .. code:: haskell
43 integer constant representing the token, and a lexeme, the literal string used in the source code.
45 .. code:: php
51 .. code:: text
83 tree structure from the tokens to more closely reflect the source code the way humans see it.
87 .. code:: text
103 source code, and may define some arbitrary flags. These are omitted for brevity.
132 into our virtual machine instructions, also called opcodes. The code responsible for this
138 .. code:: text
[all …]
/php-src/ext/standard/tests/http/
H A Dgh11274.phpt28 echo "-- Testing redirect status code $status --\n";
43 -- Testing redirect status code 301 --
48 -- Testing redirect status code 302 --
53 -- Testing redirect status code 307 --
58 -- Testing redirect status code 308 --
H A Dgh9316.phpt12 …Some very long reason-phrase to test that this is properly handled by our code without adding a ne…
39 …Some very long reason-phrase to test that this is properly handled by our code without adding a ne…
46 …Some very long reason-phrase to test that this is properly handled by our code without adding a ne…
53 …Some very long reason-phrase to test that this is properly handled by our code without adding a ne…
/php-src/ext/tokenizer/tests/
H A DPhpToken_extension.phpt8 $code = <<<'PHP'
23 foreach (MyPhpToken::tokenize($code) as $token) {
H A Dbad_character.phpt14 foreach ($codes as $code) {
15 foreach (token_get_all($code) as $token) {
H A Dnamespaced_names.phpt8 $code = <<<'CODE'
17 foreach (PhpToken::tokenize($code) as $token) {
/php-src/ext/hash/tests/
H A Dhash_serialize_004.phpt41 Incomplete or ill-formed serialization data ("sha1" code -1)
42 Incomplete or ill-formed serialization data ("sha1" code -1024)
43 Incomplete or ill-formed serialization data ("sha1" code -1)
/php-src/ext/soap/tests/soap12/
H A Dsoap12-test.inc115 function validateCountryCode($code) {
116 if (strlen($code) != 2) {
117 …Not a valid country code", NULL, NULL, NULL, new SoapHeader("http://example.org/ts-tests", "valida…
/php-src/ext/pdo_dblib/tests/
H A Dtimeout.phpt27 // expect some kind of error code
41 // expect some kind of error code
53 // expect some kind of error code
65 // expect some kind of error code
/php-src/Zend/tests/generators/finally/
H A Dfinally_ran_on_close.phpt15 echo "code after finally\n";
19 echo "code after second finally\n";
/php-src/ext/phar/tests/
H A Dfrontcontroller3.phpt16code style="color: #000000"><span style="color: #0000BB">&lt;?php </span><span style="color: #0077…
H A Dfrontcontroller9.phpt16code style="color: #000000"><span style="color: #0000BB">&lt;?php </span><span style="color: #0077…
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_match_data.c83 pcre2_match_data_create_from_pattern(const pcre2_code *code, in pcre2_match_data_create_from_pattern() argument
86 if (gcontext == NULL) gcontext = (pcre2_general_context *)code; in pcre2_match_data_create_from_pattern()
87 return pcre2_match_data_create(((pcre2_real_code *)code)->top_bracket + 1, in pcre2_match_data_create_from_pattern()

Completed in 25 milliseconds

12345678910>>...32