検索

phrase: max: clip:
target: order:
Results of 201 - 210 of about 511 for path (0.197 sec.)
php.ini ディレクティブのリスト 3865
« php.ini ディレクティブ php.ini のセクション一覧 » PHP Manual php.ini ディレクティブ php.ini デ ... .check_shebang_line "1" PHP_INI_SYSTEM cgi.discard_path "0" PHP_INI_SYSTEM cgi.fix_pathinfo "1" PHP_INI_SY ... i のみ extension NULL php.ini のみ extension_dir "/path/to/php" PHP_INI_SYSTEM fastcgi.impersonate "0" PHP ... PHP_INI_ALL implicit_flush "0" PHP_INI_ALL include_path ".:/path/to/php/pear" PHP_INI_ALL intl.default_loc ... revalidate_freq "2" PHP_INI_ALL opcache.revalidate_path "0" PHP_INI_ALL opcache.save_comments "1" PHP_INI_ ...
https://man.plustar.jp/php/ini.list.html - [similar]
CGI およびコマンドライン 3865
« LiteSpeed/OpenLiteSpeed Webサーバ(Unixシステム用) OpenBSD へのインストール » PHP Manual Unix シ ... ONTENT_LENGTH , CONTENT_TYPE , GATEWAY_INTERFACE , PATH_INFO , PATH_TRANSLATED , QUERY_STRING , REMOTE_ADD ... RVER , テスト , サーバー , 定義 , TYPE , CONTENT , PATH , 規約 ...
https://man.plustar.jp/php/install.unix.commandline.html - [similar]
Building the MongoDB PHP Driver from source 3865
« Installing the MongoDB PHP Driver on Windows 実行時設定 » PHP Manual インストール手順 Building ... red version of OpenSSL is selected, the PKG_CONFIG_PATH environment variable may be used to control the se ... arch path for pkg-config . If pkg-config is not used, config ... ment, which can be used to specify a manual search path (for OpenSSL only). The final build step, make ins ...
https://man.plustar.jp/php/mongodb.installation.manual.html - [similar]
fopen、file_get_contents、opendir などの stat 関連の関数をすべて phar に横取りさ... 3865
« Phar::hasMetadata Phar::isBuffering » PHP Manual Phar fopen、file_get_contents、opendir などの ... __FILE__ . '/file.php' ; ?> phar ファイルの場所が /path/to/myphar.phar で、その中に file.php と file2.txt ... 用した場合は、 PHP はカレントディレクトリを phar:///path/to/myphar.phar/ とみなし、上のコードの場合は phar: ... ///path/to/myphar.phar/file2.txt をオープンします。 関連キ ...
https://man.plustar.jp/php/phar.interceptfilefuncs.html - [similar]
Vtiful\Kernel\Excel insertImage 3865
« Vtiful\Kernel\Excel::insertFormula Vtiful\Kernel\Excel::insertText » PHP Manual Vtiful\Kernel\ ... Image ( int $row , int $column , string $localImagePath ) Insert a local image into the cell. パラメータ r ... ow cell row column cell column localImagePath local image path 戻り値 Vtiful\Kernel\Excel instan ... ce 例 例1 example <?php $config = [ 'path' => './tests' ]; $excel = new \ Vtiful \ Kernel \ ... , Kernel , insertImage , row , column , localImagePath , int , local , xlswriter , public ...
https://man.plustar.jp/php/vtiful-kernel-excel.insertImage.html - [similar]
ディレクトリを作る 3834
« eio_lstat eio_mknod » PHP Manual Eio 関数 ディレクトリを作る eio_mkdir (PECL eio >= 0.0.1dev) ... kdir — ディレクトリを作る 説明 eio_mkdir ( string $path , int $mode , int $pri = EIO_PRI_DEFAULT , callabl ... アクセスモードでディレクトリを作ります。 パラメータ path 新しいディレクトリへのパス。 mode アクセスモード。 ... エスト , 関数 , callback , mode , data , アクセス , path ...
https://man.plustar.jp/php/function.eio-mkdir.html - [similar]
Initiates a backup task in the service manager and returns immediately 3834
« ibase_affected_rows ibase_blob_add » PHP Manual Firebird/InterBase 関数 Initiates a backup tas ... o the database server. source_db The absolute file path to the database on the database server. You can al ... so use a database alias. dest_file The path to the backup file on the database server. options ... base server // Backup employee database using full path to /srv/backup/employees.fbk // Don't use any spec ...
https://man.plustar.jp/php/function.ibase-backup.html - [similar]
バイナリ IPTC データを JPEG イメージに埋めこむ 3834
« imagexbm iptcparse » PHP Manual GD および Image 関数 バイナリ IPTC データを JPEG イメージに埋め ... urn $retval . $value ; } // jpeg ファイルへのパス $path = './phplogo.jpg' ; // IPTC タグを設定します $iptc ... データを埋め込みます $content = iptcembed ( $data , $path ); // 新しい画像データをファイルに書き込みます $fp ... = fopen ( $path , "wb" ); fwrite ( $fp , $content ); fclose ( $fp ...
https://man.plustar.jp/php/function.iptcembed.html - [similar]
はじめに 3834
« Phar インストール/設定 » PHP Manual Phar はじめに はじめに phar 拡張モジュールは、PHP アプリケ ... を用います。 例1 外部ファイルの使用 <?php include '/path/to/external/file.php' ; ?> PHP は、実際には /path/ ... to/external/file.php をストリームラッパー file:///path/to/external/file.php とみなし、 内部的にはファイル ... カルファイルにアクセスしています。 Phar アーカイブ /path/to/myphar.phar の中に含まれるファイル file.php を使 ... アーカイブ内のファイルの使用 <?php include 'phar:///path/to/myphar.phar/file.php' ; ?> 実際のところ、phar ア ...
https://man.plustar.jp/php/intro.phar.html - [similar]
Phar アーカイブ全体を Gzip あるいは Bzip2 で圧縮する 3834
« Phar::canWrite Phar::compressFiles » PHP Manual Phar Phar アーカイブ全体を Gzip あるいは Bzip2 ... 例1 Phar::compress() の例 <?php $p = new Phar ( '/path/to/my.phar' , 0 , 'my.phar' ); $p [ 'myfile.txt' ] ... = 'hi' ; $p1 = $p -> compress ( Phar :: GZ ); // /path/to/my.phar.gz にコピーします $p2 = $p -> compress ... ( Phar :: BZ2 ); // /path/to/my.phar.bz2 にコピーします $p3 = $p2 -> compres ... s ( Phar :: NONE ); // 例外: /path/to/my.phar は既に存在します ?> 参考 PharFileInfo:: ...
https://man.plustar.jp/php/phar.compress.html - [similar]