Home
last modified time | relevance | path

Searched refs:val (Results 151 – 175 of 411) sorted by relevance

12345678910>>...17

/PHP-5.5/ext/pdo/tests/
H A Dpdo_014.phpt19 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10), grp VARCHAR(10))');
22 $SELECT = 'SELECT val, grp FROM test';
75 ["val"]=>
82 ["val"]=>
H A Dpdo_015.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(20))');
21 $select1 = $db->prepare('SELECT id, val, val2 FROM test');
22 $select2 = $db->prepare('SELECT val, val2 FROM test');
H A Dpdo_023.phpt63 $db->query('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10))');
68 $stmt = $db->query('SELECT val, id FROM test');
101 string(24) "SELECT val, id FROM test"
/PHP-5.5/ext/session/
H A Dmod_user.c29 #define SESS_ZVAL_LONG(val, a) \ argument
32 ZVAL_LONG(a, val); \
139 *val = estrndup(Z_STRVAL_P(retval), Z_STRLEN_P(retval)); in PS_READ_FUNC()
155 SESS_ZVAL_STRINGN((char*)val, vallen, args[1]); in PS_WRITE_FUNC()
/PHP-5.5/ext/standard/tests/array/
H A Dbug36975.phpt10 $val = array_pop($a);
11 $a[] = $val;
H A Darray_count_values_variation.phpt27 $arrays = array ("bobk" => "bobv", "val", 6 => "val6", $fp, $ob);
45 ["val"]=>
H A Darray_uintersect_assoc_basic.phpt11 function cr($val) {
12 $this->priv_member = $val;
H A Darray_udiff_basic.phpt11 function cr($val) {
12 $this->priv_member = $val;
/PHP-5.5/ext/standard/tests/math/
H A Dround_error.phpt5 /* Prototype : float round ( float $val [, int $precision ] )
6 * Description: Returns the rounded value of val to specified precision (number of digits
H A Dround_variation1.phpt2 Test round() function : usage variations - different data types as $val argument
7 /* Prototype : float round ( float $val [, int $precision ] )
8 * Description: Returns the rounded value of val to specified precision (number of digits
/PHP-5.5/ext/dba/tests/
H A Ddba_db4_handlers.phpt34 foreach ($h as $key => $val) {
36 echo "$val\n";
/PHP-5.5/ext/spl/tests/
H A DSplFileObject_fputcsv.phpt37 foreach($res as &$val)
39 $val = substr($val, 0, -1);
/PHP-5.5/ext/standard/tests/file/
H A Dfputcsv_variation15.phpt41 foreach($res as &$val)
43 $val = substr($val, 0, -1);
/PHP-5.5/sapi/cgi/
H A Dfastcgi.h111 typedef void (*fcgi_apply_func)(char *var, unsigned int var_len, char *val, unsigned int val_len, v…
127 char* fcgi_putenv(fcgi_request *req, char* var, int var_len, char* val);
129 …* fcgi_quick_putenv(fcgi_request *req, char* var, int var_len, unsigned int hash_value, char* val);
/PHP-5.5/ext/oci8/tests/
H A Dconn_attr_4.phpt59 foreach($values_array as $val ) {
60 oci_set_module_name($c1,$val);
61 oci_set_client_identifier($c1,$val);
62 oci_set_client_info($c1,$val);
63 $r = oci_set_action($c1,$val);
65 echo "Values set successfully to $val\n";
/PHP-5.5/sapi/apache/
H A Dphp_apache.c256 php_info_print_table_row(2, elts[i].key, elts[i].val); in PHP_MINFO_FUNCTION()
276 php_info_print_table_row(2, env[i].key, env[i].val); in PHP_MINFO_FUNCTION()
284 php_info_print_table_row(2, env[i].key, env[i].val); in PHP_MINFO_FUNCTION()
407 …if (add_assoc_string(return_value, tenv[i].key, (tenv[i].val==NULL) ? "" : tenv[i].val, 1)==FAILUR… in PHP_FUNCTION()
427 …if (add_assoc_string(return_value, tenv[i].key, (tenv[i].val==NULL) ? "" : tenv[i].val, 1)==FAILUR… in PHP_FUNCTION()
440 char *var = NULL, *val = NULL; in PHP_FUNCTION() local
443 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &var, &var_len, &val, &val_len, &top)… in PHP_FUNCTION()
452 …ap_table_setn(r->subprocess_env, ap_pstrndup(r->pool, var, var_len), ap_pstrndup(r->pool, val, val… in PHP_FUNCTION()
/PHP-5.5/sapi/aolserver/
H A Daolserver.c547 char *val; in php_ns_config()
549 val = strchr(value, ' '); in php_ns_config()
550 if (val) { in php_ns_config()
553 new_key = estrndup(value, val - value); in php_ns_config()
556 val++; in php_ns_config()
557 } while(*val == ' '); in php_ns_config()
559 Ns_Log(Debug, "PHP configuration option '%s=%s'", new_key, val); in php_ns_config()
560 zend_alter_ini_entry(new_key, strlen(new_key) + 1, val, in php_ns_config()
561 strlen(val) + 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); in php_ns_config()
/PHP-5.5/ext/mcrypt/tests/
H A Dbug37595.phpt34 foreach ($data as $val) {
36 $enc = mcrypt_generic($td, $val);
/PHP-5.5/Zend/tests/
H A Dbug37212.phpt10 public function __construct($val)
12 $this->value = $val;
/PHP-5.5/tests/lang/
H A DpassByReference_003.phpt5 function passbyVal($val) {
7 var_dump($val);
/PHP-5.5/ext/reflection/tests/
H A DReflectionParameter_003.phpt41 $val = 0;
43 $val = $parameter->getDefaultValue();
44 var_dump($val);
/PHP-5.5/ext/spl/internal/
H A Dinfiniteiterator.inc27 foreach($limit as $val=>$key)
29 echo "$val=>$key\n";
/PHP-5.5/build/
H A Dorder_by_dep.awk37 function do_deps(mod_idx, module_name, mod_name_len, dep, ext, val, depidx)
46 val = mod_deps[ext];
/PHP-5.5/ext/openssl/
H A Dxp_ssl.c522 zval **val; in php_openssl_setup_crypto() local
526 zval_is_true(*val)) { in php_openssl_setup_crypto()
534 zval **val; in php_openssl_setup_crypto() local
538 zval_is_true(*val)) { in php_openssl_setup_crypto()
665 zval **val, *zcert; in php_openssl_enable_crypto() local
669 "capture_peer_cert", &val) && in php_openssl_enable_crypto()
670 zval_is_true(*val)) { in php_openssl_enable_crypto()
684 zval_is_true(*val)) { in php_openssl_enable_crypto()
998 zval **val = NULL; in get_sni() local
1000 …php_stream_context_get_option(ctx, "ssl", "SNI_enabled", &val) == SUCCESS && !zend_is_true(*val)) { in get_sni()
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxml_to_dandarpc.c77 id = attr_iter->val; in xml_element_to_DANDARPC_REQUEST_worker()
80 type = attr_iter->val; in xml_element_to_DANDARPC_REQUEST_worker()
187 attr_type->val = 0; in DANDARPC_to_xml_element_worker()
197 attr_id->val = strdup(id); in DANDARPC_to_xml_element_worker()
268 attr_type->val = strdup(pAttrType); in DANDARPC_to_xml_element_worker()
287 version->val = strdup(VAL_VERSION_0_9); in DANDARPC_REQUEST_to_xml_element()

Completed in 94 milliseconds

12345678910>>...17