Home
last modified time | relevance | path

Searched refs:uid (Results 1 – 25 of 80) sorted by relevance

1234

/php-src/ext/spl/tests/
H A Dbug65328.phpt30 * @param mixed $uid
33 public function find($uid)
48 * @param mixed $uid
97 protected $uid;
111 * @param mixed $uid
122 $this->uid = $uid ? : uniqid(sha1(serialize($data)), true);
127 * @param mixed $uid
131 $this->uid = $uid;
139 return $this->uid;
198 * @param mixed $uid
[all …]
/php-src/ext/pdo_mysql/tests/
H A Dbug_38546.phpt31 'uid' => 6,
56 'uid' => 6,
82 'uid' => 6,
109 'uid' => 6,
136 'uid' => 6,
196 [uid] => 6
208 [uid] => 6
220 [uid] => 6
241 [uid] => 6
262 [uid] => 6
[all …]
/php-src/ext/xsl/tests/
H A Dbug69168.phpt8 <allusers><user><uid>bob</uid></user><user><uid>joe</uid></user></allusers>
15 <xsl:value-of select="php:function('getPath',uid)"/><br />
41 /allusers/user[1]/uid = boba<br/>/allusers/user[2]/uid = joea<br/>
42 string(21) "/allusers/user[1]/uid"
H A Dxsltprocessor_transformToURI.phpt12 <uid>bob</uid>
15 <uid>joe</uid>
31 select="php:function('ucfirst',string(uid))"/>
H A Dxsltprocessor_transformToXML.phpt12 <uid>bob</uid>
15 <uid>joe</uid>
32 select="php:function('ucfirst',string(uid))"/>
H A Dxsltprocessor_transformToDoc.phpt12 <uid>royopa</uid>
29 select="php:function('ucfirst',string(uid))"/>
H A Dbug71540.phpt14 <uid>bob</uid>
31 select="php:function('test',uid,test(test))"/>
/php-src/ext/posix/tests/
H A Dposix_getpwuid_error.phpt13 echo "\n-- Testing posix_getpwuid() function negative uid --\n";
14 $uid = -99;
15 var_dump( posix_getpwuid($uid) );
22 -- Testing posix_getpwuid() function negative uid --
H A Dposix_getpwnam_basic_01.phpt10 $uid = posix_geteuid();
11 $user = posix_getpwuid($uid);
23 [uid] => %d
H A Dposix_seteuid_basic.phpt13 $uid = var_dump(posix_seteuid( $myuid ) );
H A Dposix_setuid_basic.phpt13 $uid = var_dump(posix_setuid( $myuid ) );
/php-src/ext/standard/
H A Dpageinfo.c88 zend_long uid; in PHP_FUNCTION() local
92 uid = php_getuid(); in PHP_FUNCTION()
93 if (uid < 0) { in PHP_FUNCTION()
96 RETURN_LONG(uid); in PHP_FUNCTION()
/php-src/ext/standard/tests/file/
H A Dlchown_basic.phpt14 $uid = posix_getuid();
18 var_dump( lchown( $filename, $uid ) );
19 var_dump( fileowner( $symlink ) === $uid );
H A Dlchown_error.phpt16 $uid = posix_getuid();
19 var_dump( lchown( 'foobar_lchown.txt', $uid ) );
H A Dlstat_stat_variation19.phpt87 ["uid"]=>
141 ["uid"]=>
197 ["uid"]=>
251 ["uid"]=>
/php-src/sapi/fpm/tests/
H A Dbug80669-uid-user-groups.phpt15 $uid = $pw['uid'];
23 user = $uid
H A Dsocket-uds-numeric-ugid.phpt37 $pw = posix_getpwuid($st['uid']);
41 echo "{$st['uid']}/{$user},{$st['gid']}/{$group}\n";
H A Dsocket-uds-numeric-ugid-nonroot.phpt42 $pw = posix_getpwuid($st['uid']);
46 echo "{$st['uid']}/{$user},{$st['gid']}/{$group}\n";
/php-src/ext/phar/
H A Dtar.h44 char uid[8]; /* owner user ID */ member
68 char uid[8]; /* owner user ID */ member
/php-src/ext/standard/tests/mail/
H A Dmail_util.inc153 fn($uid) => $this->getHeaders($uid) + ['Body' => $this->getBody($uid)],
158 private function getHeaders(int $uid): array
160 $this->mailConnecter->send(self::FETCH_HEADERS, "UID FETCH {$uid} (BODY[HEADER])");
182 private function getBody(int $uid): string
184 $this->mailConnecter->send(self::FETCH_BODY, "UID FETCH {$uid} (BODY[TEXT])");
197 … fn($uid) => $this->mailConnecter->send(self::DELETE, "UID STORE {$uid} +FLAGS (\\Deleted)"),
/php-src/ext/sysvmsg/tests/
H A D004.phpt17 echo "Set uid:\n"; // same as the running user to make it succeed
18 $arr = array('msg_perm.uid' => getmyuid());
47 Set uid:
/php-src/ext/pcntl/tests/
H A D002.phpt50 echo "signo === uid\n";
51 var_dump($siginfo['uid'] === posix_getuid());
75 signo === uid
/php-src/ext/iconv/tests/
H A Diconv_mime_decode_headers.phpt16 Received: (qmail 63472 invoked by uid 1010); 1 Jan 1970 0:00:00 -0000
23 Received: (qmail 63459 invoked by uid 1010); 1 Jan 1970 0:00:00 -0000
47 string(59) "(qmail 63472 invoked by uid 1010); 1 Jan 1970 0:00:00 -0000"
49 string(59) "(qmail 63459 invoked by uid 1010); 1 Jan 1970 0:00:00 -0000"
/php-src/ext/pdo_odbc/
H A Dodbc_driver.c542 char *uid = NULL, *pwd = NULL, *dsn = NULL; in pdo_odbc_handle_factory() local
550 uid = emalloc(estimated_length); in pdo_odbc_handle_factory()
551 php_odbc_connstr_quote(uid, dbh->username, estimated_length); in pdo_odbc_handle_factory()
553 uid = dbh->username; in pdo_odbc_handle_factory()
557 new_dsn_size = strlen(db) + strlen(uid) + strlen(";UID=;") + 1; in pdo_odbc_handle_factory()
559 snprintf(dsn, new_dsn_size, "%s;UID=%s;", db, uid); in pdo_odbc_handle_factory()
582 + strlen(uid) + strlen(pwd) in pdo_odbc_handle_factory()
585 snprintf(dsn, new_dsn_size, "%s;UID=%s;PWD=%s;", db, uid, pwd); in pdo_odbc_handle_factory()
590 if (uid && should_quote_uid) { in pdo_odbc_handle_factory()
591 efree(uid); in pdo_odbc_handle_factory()
/php-src/ext/fileinfo/libmagic/
H A Dtar.h56 char uid[8]; member

Completed in 31 milliseconds

1234