Searched refs:return_code (Results 1 – 4 of 4) sorted by relevance
/PHP-8.1/ext/standard/tests/file/windows_mb_path/ |
H A D | bug71509.phpt | 29 $return_code = $zipfile->open($outputfile_zip, ZipArchive::CREATE); 30 if ($return_code != true) die("Failed to open file: " . $return_code); 32 $return_code = $zipfile->addfile($testfile_zip, basename($testfile_zip)); 33 if ($return_code != true) print("Failed to add file: " . $zipfile->getStatusString()); 35 $return_code = $zipfile->close(); 36 if ($return_code != true) die("Failed to close archive: " . $zipfile->getStatusString());
|
/PHP-8.1/ext/sqlite3/ |
H A D | sqlite3.c | 358 int return_code; in PHP_METHOD() local 370 if (return_code != SQLITE_OK) { in PHP_METHOD() 549 int return_code; in PHP_METHOD() local 577 if (return_code != SQLITE_OK) { in PHP_METHOD() 593 switch (return_code) { in PHP_METHOD() 661 int return_code; in PHP_METHOD() local 686 if (return_code != SQLITE_OK) { in PHP_METHOD() 693 switch (return_code) { in PHP_METHOD() 1491 int return_code; in php_sqlite3_bind_params() local 1763 int return_code = 0; in PHP_METHOD() local [all …]
|
/PHP-8.1/ext/json/ |
H A D | json.c | 163 int return_code; in php_json_encode_ex() local 168 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex() 171 return return_code; in php_json_encode_ex()
|
H A D | json_encoder.c | 530 int return_code; in php_json_encode_serializable_object() local 573 return_code = php_json_encode_array(buf, &retval, options, encoder); in php_json_encode_serializable_object() 576 return_code = php_json_encode_zval(buf, &retval, options, encoder); in php_json_encode_serializable_object() 583 return return_code; in php_json_encode_serializable_object()
|
Completed in 19 milliseconds