/php-src/ext/standard/tests/strings/ |
H A D | strval.phpt | 2 strval() function 6 var_dump(strval($foo)); 8 var_dump(strval(FOO)); 9 var_dump(strval('foobar')); 10 var_dump(strval(1)); 11 var_dump(strval(1.1)); 12 var_dump(strval(true)); 13 var_dump(strval(false)); 14 var_dump(strval(array('foo')));
|
H A D | strval_error.phpt | 2 Test strval() function : usage variations - error conditions 5 echo "*** Testing strval() : error conditions ***\n"; 14 // Testing strval with a object which has no toString() method 15 echo "\n-- Testing strval() function with object which has not toString() method --\n"; 17 var_dump( strval(new MyClass()) ); 24 *** Testing strval() : error conditions *** 26 -- Testing strval() function with object which has not toString() method --
|
H A D | strval_variation2.phpt | 24 echo bin2hex(strval($s0)); 26 echo bin2hex(strval($s1)); 28 echo bin2hex(strval($s2)); 30 echo bin2hex(strval($s3)); 32 echo bin2hex(strval($s4)); 34 echo bin2hex(strval($s5)); 36 echo bin2hex(strval($s6)); 38 echo bin2hex(strval($s7)); 40 echo bin2hex(strval($s8)); 42 echo bin2hex(strval($s9)); [all …]
|
H A D | strval_basic.phpt | 2 Test strval() function : basic functionality 5 echo "*** Testing strval() : basic variations ***\n"; 36 // loop through each element of the array for strval 40 var_dump( strval($value) ); 45 *** Testing strval() : basic variations ***
|
H A D | strval_variation1.phpt | 2 Test strval() function : usage variations - Pass different data types as strval 5 echo "*** Testing strval() : usage variations ***\n"; 79 // loop through each element of the array for strval 83 var_dump( strval($value) ); 88 *** Testing strval() : usage variations ***
|
/php-src/ext/date/tests/ |
H A D | bug21966.phpt | 7 echo '27/3/04 = ' . strval(mktime(0,0,0,3,27,2004)) . "\n"; // 1080345600 8 echo '28/3/04 = ' . strval(mktime(0,0,0,3,28,2004)) . "\n"; // -3662 - should be 108043200 9 echo '28/3/04 = ' . strval(mktime(2,0,0,3,28,2004)) . "\n"; // 1080435600 10 echo '29/3/04 = ' . strval(mktime(0,0,0,3,29,2004)) . "\n"; // 1080514800 11 echo '30/3/04 = ' . strval(mktime(0,0,0,3,30,2004)) . "\n"; // 1080601200
|
/php-src/Zend/tests/zend_ini/ |
H A D | zend_ini_parse_quantity_overflow.phpt | 20 return $prefix . strval($digit+1); 32 'No overflow 004' => strval(PHP_INT_MAX), 33 'No overflow 005' => strval(PHP_INT_MIN), 36 'Subject overflow 001' => increment(strval(PHP_INT_MAX)), 37 'Subject overflow 002' => decrement(strval(PHP_INT_MIN)), 38 'Multiplier overflow 001' => strval(PHP_INT_MAX).'K', 39 'Multiplier overflow 002' => strval(PHP_INT_MIN).'K',
|
H A D | zend_ini_parse_uquantity_overflow.phpt | 12 'No overflow 004' => strval(PHP_INT_MAX), 20 'Subject overflow 003' => strval(PHP_INT_MIN), 24 'Multiplier overflow 001' => strval(PHP_INT_MAX).'K',
|
/php-src/ext/mysqli/tests/ |
H A D | ghsa-h35g-vwh6-m678-stmt-row-no-space.phpt | 20 $stmt = $conn->prepare("SELECT strval, strval FROM data"); 28 var_dump($row["strval"]); 46 [*] Sending - Stmt prepare data strval: 0c0000010001000000020000000000003200000203646566087068705f7… 48 [*] Sending - Malicious Stmt Response for data strval [Extract heap through buffer over-read]: 0100…
|
H A D | ghsa-h35g-vwh6-m678-query-len-overflow.phpt | 20 $sql = "SELECT strval, strval FROM data"; 26 var_dump($row['strval']); 43 [*] Sending - Malicious Query Response for data strval field [length overflow]: 0100000102320000020…
|
H A D | protocol_stmt_row_fetch_data.phpt | 21 $stmt = $conn->prepare("SELECT strval, $field FROM data"); 85 [*] Sending - Stmt prepare data strval: 0c0000010001000000020000000000003200000203646566087068705f7… 87 [*] Sending - Stmt execute data strval: 01000001023200000203646566087068705f74657374046461746104646…
|
H A D | protocol_query_row_fetch_data.phpt | 21 $sql = "SELECT strval, $field FROM data"; 70 [*] Sending - Query execute data strval: 01000001023200000203646566087068705f7465737404646174610464…
|
H A D | ghsa-h35g-vwh6-m678-stmt-row-datetime.phpt | 20 $stmt = $conn->prepare("SELECT strval, dtival FROM data");
|
H A D | ghsa-h35g-vwh6-m678-stmt-row-double.phpt | 20 $stmt = $conn->prepare("SELECT strval, dblval FROM data");
|
H A D | ghsa-h35g-vwh6-m678-stmt-row-float.phpt | 20 $stmt = $conn->prepare("SELECT strval, fltval FROM data");
|
H A D | ghsa-h35g-vwh6-m678-stmt-row-int.phpt | 20 $stmt = $conn->prepare("SELECT strval, intval FROM data");
|
H A D | ghsa-h35g-vwh6-m678-stmt-row-time.phpt | 20 $stmt = $conn->prepare("SELECT strval, timval FROM data");
|
/php-src/ext/standard/ |
H A D | type.c | 160 char *strval = Z_STRVAL_P(num); in PHP_FUNCTION() local 163 while (isspace(*strval) && strlen) { in PHP_FUNCTION() 164 strval++; in PHP_FUNCTION() 171 if (strval[0] == '-' || strval[0] == '+') { in PHP_FUNCTION() 175 if (strval[offset] == '0' && (strval[offset + 1] == 'b' || strval[offset + 1] == 'B')) { in PHP_FUNCTION() 182 tmpval[0] = strval[0]; in PHP_FUNCTION() 186 memcpy(tmpval + offset, strval + offset + 2, strlen - offset); in PHP_FUNCTION() 227 PHP_FUNCTION(strval) in PHP_FUNCTION() argument
|
/php-src/ext/intl/tests/ |
H A D | bug71020.phpt | 10 …yarray[substr(md5(microtime()),rand(0,26),9) . strval($x)]= substr(md5(microtime()),rand(0,26),9) …
|
/php-src/ext/standard/tests/general_functions/ |
H A D | strval.phpt | 2 Test strval() function 94 /* loop to check that strval() recognizes different 99 var_dump( strval($scalar) ); 102 echo "\n*** Testing strval() with non_scalar values ***\n"; 133 strval() on objects, arrays, boolean and others */ 137 var_dump( strval($value) ); 267 *** Testing strval() with non_scalar values ***
|
/php-src/ext/simplexml/tests/ |
H A D | bug42369.phpt | 12 md5(strval($x->x));
|
/php-src/Zend/tests/ |
H A D | bug61273.phpt | 12 echo strval("okey");
|
/php-src/ext/opcache/tests/opt/ |
H A D | sccp_025.phpt | 19 'viewtopic' => strval("phpBB/viewtopic.$phpEx"),
|
/php-src/Zend/ |
H A D | zend_constants.c | 170 ZEND_API void zend_register_stringl_constant(const char *name, size_t name_len, const char *strval,… in zend_register_stringl_constant() argument 174 ZVAL_STR(&c.value, zend_string_init_interned(strval, strlen, flags & CONST_PERSISTENT)); in zend_register_stringl_constant() 181 ZEND_API void zend_register_string_constant(const char *name, size_t name_len, const char *strval, … in zend_register_string_constant() argument 183 zend_register_stringl_constant(name, name_len, strval, strlen(strval), flags, module_number); in zend_register_string_constant()
|
H A D | zend_constants.h | 86 ZEND_API void zend_register_string_constant(const char *name, size_t name_len, const char *strval, … 87 ZEND_API void zend_register_stringl_constant(const char *name, size_t name_len, const char *strval,…
|