Home
last modified time | relevance | path

Searched refs:msg (Results 51 – 75 of 239) sorted by relevance

12345678910

/PHP-8.3/ext/opcache/tests/
H A Dbug73402.phpt11 public function info($msg) {
12 echo $msg;
H A Dbug75556.phpt16 $msg = 'Date objects must have UTC as their timezone';
17 throw new \UnexpectedValueException($msg);
/PHP-8.3/Zend/tests/try/
H A Dtry_catch_finally_004.phpt7 function dummy($msg) {
8 var_dump($msg);
H A Dcatch_finally_004.phpt6 function throw_exception($msg) {
7 throw new Exception($msg);
H A Dcatch_finally_003.phpt5 function dummy($msg) {
6 var_dump($msg);
/PHP-8.3/Zend/tests/
H A Ddynamic_prop_deprecation_002.phpt5 set_error_handler(function($code, $msg){
6 echo "Err: $msg\n";
H A Drecord_errors_001.phpt9 set_error_handler(function($code, $msg) {
10 echo "Error: $msg\n";
H A Dgh15907.phpt6 set_error_handler(function($errno, $msg) {
7 throw new Exception($msg);
H A Dbug74164.phpt8 set_error_handler(function ($type, $msg) {
9 throw new \Exception($msg);
H A Derrmsg_045.phpt6 set_error_handler(function($_, $msg, $file) {
7 var_dump($msg, $file);
H A Dbug65322.phpt11 set_error_handler(function($_, $msg, $file) {
12 var_dump($msg, $file);
H A Dundef_index_to_exception.phpt6 set_error_handler(function($_, $msg) {
7 throw new Exception($msg);
/PHP-8.3/ext/intl/idn/
H A Didn.c40 static int php_intl_idn_check_status(UErrorCode err, const char *msg) in php_intl_idn_check_status() argument
47 msg); in php_intl_idn_check_status()
56 static inline void php_intl_bad_args(const char *msg) in php_intl_bad_args() argument
58 php_intl_idn_check_status(U_ILLEGAL_ARGUMENT_ERROR, msg); in php_intl_bad_args()
/PHP-8.3/ext/gd/libgd/
H A Dgdtest.c14 void CompareImages (char *msg, gdImagePtr im1, gdImagePtr im2);
360 CompareImages (char *msg, gdImagePtr im1, gdImagePtr im2) in CompareImages() argument
368 printf ("%%%s: ERROR images differ: BAD\n", msg); in CompareImages()
372 printf ("%%%s: WARNING images differ: WARNING - Probably OK\n", msg); in CompareImages()
376 printf ("%%%s: OK\n", msg); in CompareImages()
382 printf ("-%s: INFO image sizes differ\n", msg); in CompareImages()
387 printf ("-%s: INFO number of palette entries differ %d Vs. %d\n", msg, in CompareImages()
393 printf ("-%s: INFO actual colours of pixels differ\n", msg); in CompareImages()
/PHP-8.3/ext/opcache/tests/jit/
H A Dassign_dim_011.phpt11 set_error_handler(function($code, $msg) use(&$my_var) {
12 echo "Err: $msg\n";
/PHP-8.3/ext/intl/msgformat/
H A Dmsgformat.c90 char *msg = NULL; in msgfmt_ctor() local
93 …spprintf( &msg, 0, "pattern syntax error (%s)", parse_error_str.s? ZSTR_VAL(parse_error_str.s) : "… in msgfmt_ctor()
97 intl_errors_set_custom_msg( INTL_DATA_ERROR_P( mfo ), msg, 1 ); in msgfmt_ctor()
99 efree( msg ); in msgfmt_ctor()
/PHP-8.3/ext/opcache/jit/libudis86/
H A Dudint.h43 #define UDERR(u, msg) \ argument
47 __FILE__, __LINE__, (msg)); \
/PHP-8.3/ext/sockets/tests/
H A Dsocket_sendto_zerocopy.phpt40 $msg = str_repeat("0123456789abcdef", 1024);
41 $len = strlen($msg);
43 $bytes_sent = socket_sendto($socket, $msg, $len, MSG_ZEROCOPY, $address, $port);
H A Dsocket_sentto_recvfrom_ipv4_udp.phpt20 $msg = "Ping!";
21 $len = strlen($msg);
22 $sent = socket_sendto($socket, $msg, $len, 0, $address, $port);
H A Dsocket_sentto_recvfrom_ipv6_udp-win32.phpt27 $msg = "Ping!";
28 $len = strlen($msg);
29 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
/PHP-8.3/ext/pdo_pgsql/
H A Dphp_pdo_pgsql_int.h76 …h_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const char *msg, const char *file, …
80 #define pdo_pgsql_error_stmt_msg(stmt, e, sqlstate, msg) \ argument
81 _pdo_pgsql_error(stmt->dbh, stmt, e, sqlstate, msg, __FILE__, __LINE__)
/PHP-8.3/ext/intl/tests/
H A Duconverter_getstandards_basic.phpt7 function assertTrue($assertion, $msg) {
8 if (!$assertion) var_dump($msg);
/PHP-8.3/ext/intl/collator/
H A Dcollator_class.h65 #define COLLATOR_CHECK_STATUS( co, msg ) \ argument
69 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), msg, 0 ); \
/PHP-8.3/ext/imap/tests/
H A Dimap_fetch_overview_variation6.phpt22 // refresh msg numbers
43 $envelope["subject"] = "Test msg 1";
75 $msg = imap_mail_compose($envelope, $body);
77 if (imap_append($imap_stream, $mailbox, $msg) === false) {
/PHP-8.3/ext/intl/spoofchecker/
H A Dspoofchecker_class.h73 #define SPOOFCHECKER_CHECK_STATUS(co, msg) \ argument
76 intl_errors_set_custom_msg(SPOOFCHECKER_ERROR_P(co), msg, 0); \

Completed in 37 milliseconds

12345678910