/PHP-5.4/ext/standard/tests/array/ |
H A D | array_flip.phpt | 5 $trans = array("a" => 1, 15 $trans = array_flip($trans); 16 var_dump($trans);
|
/PHP-5.4/ext/interbase/ |
H A D | interbase.c | 575 *trans = NULL; in _php_ibase_get_link_trans() 591 if (p->trans != NULL) { in _php_ibase_commit_link() 685 if ( (*l)->trans == trans) { in _php_ibase_free_trans() 694 efree(trans); in _php_ibase_free_trans() 1111 if (l->trans != NULL) l->trans->handle = NULL; in PHP_FUNCTION() 1265 (*l)->trans = ib_trans; in PHP_FUNCTION() 1287 if (*trans == NULL) { in _php_ibase_def_trans() 1304 *trans = tr; in _php_ibase_def_trans() 1312 ibase_trans *trans = NULL; in _php_ibase_trans_end() local 1332 trans = ib_link->tr_list->trans; in _php_ibase_trans_end() [all …]
|
H A D | ibase_query.c | 49 ibase_trans *trans; member 60 ibase_trans *trans; member 328 ib_query->trans = trans; in _php_ibase_alloc_query() 882 ibase_trans *trans; in _php_ibase_exec() local 896 trans->handle = tr; in _php_ibase_exec() 910 (*l)->trans = trans; in _php_ibase_exec() 947 res->trans = ib_query->trans; in _php_ibase_exec() 1218 trans = ib_link->tr_list->trans; in PHP_FUNCTION() 1222 if (trans == NULL) { in PHP_FUNCTION() 1228 trans = ib_link->tr_list->trans; in PHP_FUNCTION() [all …]
|
H A D | ibase_blobs.c | 209 ibase_trans *trans = NULL; in PHP_FUNCTION() local 218 PHP_IBASE_LINK_TRANS(link, ib_link, trans); in PHP_FUNCTION() 242 ibase_trans *trans = NULL; in PHP_FUNCTION() local 262 PHP_IBASE_LINK_TRANS(link, ib_link, trans); in PHP_FUNCTION() 404 ibase_trans *trans = NULL; in PHP_FUNCTION() local 425 PHP_IBASE_LINK_TRANS(link, ib_link, trans); in PHP_FUNCTION() 433 if (isc_open_blob(IB_STATUS, &ib_link->handle, &trans->handle, &ib_blob.bl_handle, in PHP_FUNCTION() 480 ibase_trans *trans = NULL; in PHP_FUNCTION() local 502 PHP_IBASE_LINK_TRANS(link, ib_link, trans); in PHP_FUNCTION() 544 ibase_trans *trans = NULL; in PHP_FUNCTION() local [all …]
|
H A D | php_ibase_includes.h | 86 ibase_trans *trans; member 166 int _php_ibase_def_trans(ibase_db_link *ib_link, ibase_trans **trans TSRMLS_DC); 168 ibase_db_link **ib_link, ibase_trans **trans);
|
/PHP-5.4/ext/interbase/tests/ |
H A D | ibase_trans_002.phpt | 12 $trans = ibase_trans(IBASE_DEFAULT, $x); 13 $sth = ibase_prepare($trans, 'INSERT INTO test1 VALUES (?, ?)'); 18 ibase_commit($trans);
|
H A D | 005.phpt | 66 $tr_def_l1 may be ommited. All queryes without link and trans
|
/PHP-5.4/ext/standard/tests/strings/ |
H A D | strtr.phpt | 6 $trans = array("hello"=>"hi", "hi"=>"hello", "a"=>"A", "world"=>"planet"); 7 var_dump(strtr("# hi all, I said hello world! #", $trans));
|
/PHP-5.4/ext/date/lib/ |
H A D | parse_tz.c | 110 tz->trans = buffer; in read_transistions() 162 tz->leap_times[i].trans = timelib_conv_int(leap_buffer[i * 2]); in read_types() 242 tz->trans[i], tz->trans[i], tz->trans_idx[i], in timelib_dump_tzinfo() 253 tz->leap_times[i].trans, in timelib_dump_tzinfo() 254 (long) tz->leap_times[i].trans, in timelib_dump_tzinfo() 341 if (!tz->timecnt || !tz->trans) { in fetch_timezone_offset() 353 if (ts < tz->trans[0]) { in fetch_timezone_offset() 370 if (ts < tz->trans[i]) { in fetch_timezone_offset() 371 *transition_time = tz->trans[i - 1]; in fetch_timezone_offset() 375 *transition_time = tz->trans[tz->timecnt - 1]; in fetch_timezone_offset() [all …]
|
H A D | timelib.c | 124 tmp->trans = (int32_t *) malloc(tz->timecnt * sizeof(int32_t)); in timelib_tzinfo_clone() 126 memcpy(tmp->trans, tz->trans, tz->timecnt * sizeof(int32_t)); in timelib_tzinfo_clone() 144 TIMELIB_TIME_FREE(tz->trans); in timelib_tzinfo_dtor()
|
H A D | timelib_structs.h | 92 int32_t trans; member 114 int32_t *trans; member
|
/PHP-5.4/ext/gd/libgd/ |
H A D | gd_png.c | 129 png_bytep trans; in gdImageCreateFromPngCtx() local 242 png_get_tRNS(png_ptr, info_ptr, &trans, &num_trans, NULL); in gdImageCreateFromPngCtx() 244 im->alpha[i] = gdAlphaMax - (trans[i] >> 1); in gdImageCreateFromPngCtx() 245 if ((trans[i] == 0) && (firstZero)) { in gdImageCreateFromPngCtx()
|
/PHP-5.4/ext/intl/ |
H A D | php_intl.c | 395 ZEND_ARG_INFO( 0, trans ) 402 ZEND_ARG_OBJ_INFO( 0, trans, Transliterator, 0 )
|
/PHP-5.4/ext/intl/transliterator/ |
H A D | transliterator_class.c | 372 ZEND_ARG_OBJ_INFO( 0, trans, Transliterator, 0 )
|
/PHP-5.4/ |
H A D | php.ini-development | 1497 ; trans sid support is disabled by default. 1498 ; Use of trans sid may risk your users security. 1506 ; http://php.net/session.use-trans-sid
|
H A D | php.ini-production | 1497 ; trans sid support is disabled by default. 1498 ; Use of trans sid may risk your users security. 1506 ; http://php.net/session.use-trans-sid
|
/PHP-5.4/ext/date/ |
H A D | php_date.c | 3426 if (tzobj->tzi.tz->trans[begin] > timestamp_begin) { in PHP_FUNCTION() 3448 if (tzobj->tzi.tz->trans[i] < timestamp_end) { in PHP_FUNCTION() 3449 add(i, tzobj->tzi.tz->trans[i]); in PHP_FUNCTION()
|
/PHP-5.4/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 127723 static const u8 trans[8][8] = { 127739 static const u8 trans[3][3] = { 127868 state = trans[state][token];
|