Home
last modified time | relevance | path

Searched refs:return_code (Results 1 – 4 of 4) sorted by relevance

/PHP-8.0/ext/standard/tests/file/windows_mb_path/
H A Dbug71509.phpt29 $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.0/ext/sqlite3/
H A Dsqlite3.c359 int return_code; in PHP_METHOD() local
371 if (return_code != SQLITE_OK) { in PHP_METHOD()
550 int return_code; in PHP_METHOD() local
578 if (return_code != SQLITE_OK) { in PHP_METHOD()
594 switch (return_code) { in PHP_METHOD()
662 int return_code; in PHP_METHOD() local
687 if (return_code != SQLITE_OK) { in PHP_METHOD()
694 switch (return_code) { in PHP_METHOD()
1502 int return_code; in php_sqlite3_bind_params() local
1773 int return_code = 0; in PHP_METHOD() local
[all …]
/PHP-8.0/ext/json/
H A Djson.c151 int return_code; in php_json_encode_ex() local
156 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
159 return return_code; in php_json_encode_ex()
H A Djson_encoder.c474 int return_code; in php_json_encode_serializable_object() local
517 return_code = php_json_encode_array(buf, &retval, options, encoder); in php_json_encode_serializable_object()
520 return_code = php_json_encode_zval(buf, &retval, options, encoder); in php_json_encode_serializable_object()
527 return return_code; in php_json_encode_serializable_object()

Completed in 21 milliseconds