検索

phrase: max: clip:
target: order:
Results of 151 - 160 of about 281 for My (0.293 sec.)
すべてのリクエストを処理し終えるまで libeio をポールする 4519
« eio_dup2 eio_fallocate » PHP Manual Eio 関数 すべてのリクエストを処理し終えるまで libeio をポー ... eio_chmod() が終了したときに呼ばれます */ function my_chmod_callback ( $data , $result ) { global $temp_ ... chmod ( $temp_filename , 0200 , EIO_PRI_DEFAULT , "my_chmod_callback" ); eio_event_loop (); ?> 上の例の出 ...
https://man.plustar.jp/php/function.eio-event-loop.html - [similar]
文字列を PHP コードとして評価する 4519
« die exit » PHP Manual その他の関数 文字列を PHP コードとして評価する eval (PHP 4, PHP 5, PHP 7 ... $name = 'coffee' ; $str = 'This is a $string with my $name in it.' ; echo $str . "\n" ; eval( "\$str = ... の例の出力は以下となります。 This is a $string with my $name in it. This is a cup with my coffee in it. 注 ...
https://man.plustar.jp/php/function.eval.html - [similar]
指定したパラメータでプリペアドステートメントを実行するリクエストを 送信し、その... 4519
« pg_select pg_send_prepare » PHP Manual PostgreSQL 関数 指定したパラメータでプリペアドステートメ ... n_busy ( $dbconn )) { pg_send_prepare ( $dbconn , "my_query" , 'SELECT * FROM shops WHERE name = $1' ); ... n_busy ( $dbconn )) { pg_send_execute ( $dbconn , "my_query" , array( "Joe's Widgets" )); $res2 = pg_get ... n_busy ( $dbconn )) { pg_send_execute ( $dbconn , "my_query" , array( "Clothes Clothes Clothes" )); $res ...
https://man.plustar.jp/php/function.pg-send-execute.html - [similar]
現在のセッションIDを新しく生成したものと置き換える 4519
« session_name session_register_shutdown » PHP Manual セッション関数 現在のセッションIDを新しく生 ... ードは完全に動作するわけではありません。一例です! // my_session_start() and my_session_regenerate_id() によ ... を利用した // 攻撃を防ぐ可能性もあります。 function my_session_start () { session_start (); if (isset( $_ ... ているはず session_start (); return; } } } function my_session_regenerate_id () { // 不安定なネットワーク ...
https://man.plustar.jp/php/function.session-regenerate-id.html - [similar]
MySQL 拡張モジュールの概要を示す例 4519
« 例 MySQL 関数 » PHP Manual 例 MySQL 拡張モジュールの概要を示す例 MySQL 拡張モジュールの概要を示 ... す例 以下は、MySQL データベースに接続し、クエリを実行し、結果レコー ... ドを 出力、接続を切断する例です。 例1 MySQL 拡張モジュールに関する例 <?php // データベースに ... 接続し、選択する $link = mysql_connect ( 'mysql_host' , 'mysql_user' , 'mysql_ ... password' ) or die( 'Could not connect: ' . mysql_error ()); echo 'Connected successfully' ; mysq ...
https://man.plustar.jp/php/mysql.examples-basic.html - [similar]
オプションを設定する 4519
« mysqli::next_result mysqli::ping » PHP Manual mysqli オプションを設定する mysqli::options mysq ... li_options (PHP 5, PHP 7, PHP 8) mysqli::options -- mysqli_options — オプションを設定す ... る 説明 オブジェクト指向型 public mysqli::options ( int $option , string | int $value ) ... : bool 手続き型 mysqli_options ( mysqli $mysql , int $option , string ... プションを設定して複数回コールされることがあります。 mysqli_options() は、 mysqli_init() がコールされた後、 ...
https://man.plustar.jp/php/mysqli.options.html - [similar]
Phar アーカイブ全体の圧縮を解除する 4519
« Phar::createDefaultStub Phar::decompressFiles » PHP Manual Phar Phar アーカイブ全体の圧縮を解除 ... :decompress() の例 <?php $p = new Phar ( '/path/to/my.phar' , 0 , 'my.phar.gz' ); $p [ 'myfile.txt' ] = ... 'hi' ; $p [ 'myfile2.txt' ] = 'hi' ; $p3 = $p2 -> decompress (); / ... / /path/to/my.phar を作成します ?> 参考 PharFileInfo::getCompres ...
https://man.plustar.jp/php/phar.decompress.html - [similar]
改行文字の前に HTML の改行タグを挿入する 4481
« nl_langinfo number_format » PHP Manual String 関数 改行文字の前に HTML の改行タグを挿入する nl ... プを生成する <?php echo nl2br ( "Welcome\r\nThis is my HTML document" , false ); ?> 上の例の出力は以下とな ... ります。 Welcome<br> This is my HTML document 例3 さまざまな改行文字 <?php $string ...
https://man.plustar.jp/php/function.nl2br.html - [similar]
指定したパラメータでプリペアドステートメントを作成するリクエストを 送信し、その... 4481
« pg_send_execute pg_send_query_params » PHP Manual PostgreSQL 関数 指定したパラメータでプリペア ... n_busy ( $dbconn )) { pg_send_prepare ( $dbconn , "my_query" , 'SELECT * FROM shops WHERE name = $1' ); ... n_busy ( $dbconn )) { pg_send_execute ( $dbconn , "my_query" , array( "Joe's Widgets" )); $res2 = pg_get ... n_busy ( $dbconn )) { pg_send_execute ( $dbconn , "my_query" , array( "Clothes Clothes Clothes" )); $res ...
https://man.plustar.jp/php/function.pg-send-prepare.html - [similar]
共有メモリブロックにデータを書き込む 4481
« shmop_size Shmop » PHP Manual 共有メモリ関数 共有メモリブロックにデータを書き込む shmop_write ... ?php $shm_bytes_written = shmop_write ( $shm_id , $my_string , 0 ); ?> この例は、 $my_string にあるデータ ...
https://man.plustar.jp/php/function.shmop-write.html - [similar]