Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 3203) sorted by path

12345678910>>...129

/php-src/
H A D.cirrus.yml11 #- sed -i -e 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
H A DCODING_STANDARDS.md48 doesn't have to be recalculated with `strlen()` (e.g. `php_addslashes()`).
147 meaning (e.g. `for (i=0; i<100; i++) ...`).
176 name of the "parent set" (e.g. the name of the extension) if no namespaces
179 long form (e.g. HTTP or URL). Abbreviations start with a capital letter
H A DCONTRIBUTING.md380 (i.e. 8.0) and then get merged up to all other branches. All security fixes
381 should go to the lowest security fixes branch (i.e 7.4). If a change is not
382 needed for later branches (i.e. fixes for features which were dropped from
H A DUPGRADING25 previously skipped if the path looked like it was referring to a file, i.e.
H A DUPGRADING.INTERNALS206 e. ext/date
/php-src/.github/actions/setup-mssql/
H A Daction.yml9 -e "ACCEPT_EULA=Y" \
10 -e "SA_PASSWORD=<YourStrong@Passw0rd>" \
/php-src/.github/actions/setup-windows/
H A Daction.yml9 …mysql.exe --port=3306 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'P…
/php-src/.github/actions/setup-x64/
H A Daction.yml11 mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
13 mysql -uroot -proot -e "SET GLOBAL local_infile = true"
/php-src/.github/scripts/windows/
H A Dtest_task.bat33 …=%MYSQL_TEST_PORT% --user=%MYSQL_TEST_USER% --password=%MYSQL_TEST_PASSWD% -e "CREATE DATABASE IF …
/php-src/.github/workflows/
H A Dnightly.yml386 mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
387 mysql -uroot -proot -e "SET GLOBAL local_infile = true"
697 mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
699 mysql -uroot -proot -e "SET GLOBAL local_infile = true"
741 mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
743 mysql -uroot -proot -e "SET GLOBAL local_infile = true"
H A Dpush.yml284 mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS wordpress"
285 …mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVI…
286 … mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'wordpress'@'localhost' WITH GRANT OPTION;"
301 if [ -e ".git/MERGE_HEAD" ]; then
/php-src/Zend/
H A Dbench.php310 for ($e=0; $e<$n; $e++)
/php-src/Zend/tests/
H A D001.phpt22 } catch (Throwable $e) {
23 echo "Exception: " . $e->getMessage() . "\n";
31 } catch (Throwable $e) {
32 echo "Exception: " . $e->getMessage() . "\n";
H A D002.phpt9 } catch (\ValueError $e) {
15 } catch (\Error $e) {
20 } catch (\Error $e) {
28 } catch (\Error $e) {
33 } catch (\Error $e) {
41 } catch (\Error $e) {
46 } catch (\Error $e) {
51 } catch (\Error $e) {
61 } catch (Throwable $e) {
69 } catch (Throwable $e) {
[all …]
H A D003.phpt23 } catch (Throwable $e) {
24 echo "Exception: " . $e->getMessage() . "\n";
31 } catch (Throwable $e) {
32 echo "Exception: " . $e->getMessage() . "\n";
46 } catch (\Error $e) {
47 echo $e->getMessage() . \PHP_EOL;
H A D004.phpt9 } catch (\ValueError $e) {
10 echo $e->getMessage() . \PHP_EOL;
H A D006.phpt8 } catch (\ValueError $e) {
9 echo $e->getMessage() . \PHP_EOL;
H A D008.phpt8 } catch (TypeError $e) {
9 echo "TypeError: ", $e->getMessage(), "\n";
H A D009.phpt14 } catch (TypeError $e) {
15 echo $e->getMessage(), "\n";
31 } catch (Exception $e) {
32 echo $e->getMessage() . "\n";
40 } catch (Error $e) {
41 echo $e->getMessage(), "\n";
45 } catch (TypeError $e) {
46 echo $e->getMessage(), "\n";
H A D010.phpt30 } catch (Exception $e) {
31 echo $e->getMessage() . "\n";
H A D011.phpt45 } catch (\TypeError $e) {
46 echo $e->getMessage() . \PHP_EOL;
50 } catch (\TypeError $e) {
51 echo $e->getMessage() . \PHP_EOL;
55 } catch (\TypeError $e) {
56 echo $e->getMessage() . \PHP_EOL;
60 } catch (\TypeError $e) {
61 echo $e->getMessage() . \PHP_EOL;
65 } catch (\TypeError $e) {
66 echo $e->getMessage() . \PHP_EOL;
H A D015.phpt10 } catch (\ValueError $e) {
11 echo $e->getMessage() . \PHP_EOL;
15 } catch (\ValueError $e) {
16 echo $e->getMessage() . \PHP_EOL;
H A D018.phpt8 } catch (Error $e) {
9 echo $e->getMessage(), "\n";
H A D020.phpt8 } catch (\Error $e) {
9 echo $e->getMessage() . \PHP_EOL;
22 } catch (\Error $e) {
23 echo $e->getMessage() . \PHP_EOL;
H A D021.phpt20 $e = array();
22 $e['e'] = 'e';
23 $e['e'] = $e['e'] ?: 'e';
24 print_r($e);
36 [e] => e

Completed in 39 milliseconds

12345678910>>...129