検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 17 for speed (0.002 sec.)
インターネット接続方式を取得する 12794
« geoip_domain_by_name geoip_isp_by_name » PHP Manual GeoIP 関数 インターネット接続方式を取得する ... 値は数値で、以下の定数と比較できます。 GEOIP_UNKNOWN_SPEED GEOIP_DIALUP_SPEED GEOIP_CABLEDSL_SPEED GEOIP_CORP ... ORATE_SPEED パラメータ hostname 接続方式を探す対象となるホスト ... ホスト example.com の接続方式を返します。 <?php $netspeed = geoip_id_by_name ( 'www.example.com' ); echo 'Th ... e connection type is ' ; switch ( $netspeed ) { case GEOIP_DIALUP_SPEED : echo 'dial-up' ; bre ...
https://man.plustar.jp/php/function.geoip-id-by-name.html - [similar]
OOP PECL/rrd example 11983
« Procedural PECL/rrd example RRD 関数 » PHP Manual 例 OOP PECL/rrd example OOP PECL/rrd example ... e of rrd <?php $rrdFile = dirname ( __FILE__ ) . "/speed.rrd" ; $outputPngFile = dirname ( __FILE__ ) . "/s ... , "now -10d" , 500 ); $creator -> addDataSource ( "speed:COUNTER:600:U:U" ); $creator -> addArchive ( "AVER ... DUpdater ( $rrdFile ); $updater -> update (array( "speed" => "12345" ), "920804700" ); $updater -> update ( ... array( "speed" => "12357" ), "920805000" ); $graphObj = new RRDG ...
https://man.plustar.jp/php/rrd.examples-oop.html - [similar]
Procedural PECL/rrd example 10380
« 例 OOP PECL/rrd example » PHP Manual 例 Procedural PECL/rrd example Procedural PECL/rrd exampl ... e of rrd <?php $rrdFile = dirname ( __FILE__ ) . "/speed.rrd" ; //create rrd file rrd_create ( $rrdFile , a ... rray( "--start" , 920804400 , "DS:speed:COUNTER:600:U:U" , "RRA:AVERAGE:0.5:1:24" , "RRA:A ... /graph output rrd_graph ( dirname ( __FILE__ ) . "/speed.png" , array( "--start" , "920804400" , "--end" , ... "920808000" , "--vertical-label" , "m/s" , "DEF:myspeed= $rrdFile :speed:AVERAGE" , "CDEF:realspeed=myspee ...
https://man.plustar.jp/php/rrd.examples-procedural.html - [similar]
定義済み定数 10086
« リソース型 GeoIP 関数 » PHP Manual GeoIP 定義済み定数 定義済み定数 以下の定数が定義されています ... ITION ( int ) GEOIP_ASNUM_EDITION ( int ) GEOIP_NETSPEED_EDITION ( int ) GEOIP_DOMAIN_EDITION ( int ) 以下の ... 数は、ネット接続のスピードを表します。 GEOIP_UNKNOWN_SPEED ( int ) GEOIP_DIALUP_SPEED ( int ) GEOIP_CABLEDSL_ ... SPEED ( int ) GEOIP_CORPORATE_SPEED ( int ) 関連キーワード: int , 定数 , 定義 , GeoIP ...
https://man.plustar.jp/php/geoip.constants.html - [similar]
Update the RRD database file 9345
« RRDUpdater::__construct ScoutAPM » PHP Manual RRDUpdater Update the RRD database file RRDUpdat ... date() examples <?php $updator = new RRDUpdater ( "speed.rrd" ); //updates the data source "speed" with val ... timestamp "920807700" $updator -> update (array( "speed" => "12411" ), "920807700" ); ?> 関連キーワード: R ...
https://man.plustar.jp/php/rrdupdater.update.html - [similar]
指定した伝送に関する情報を得る 8983
« curl_file_create curl_init » PHP Manual cURL 関数 指定した伝送に関する情報を得る curl_getinfo ... IZE_DOWNLOAD - ダウンロードされたバイト数 CURLINFO_SPEED_DOWNLOAD - 平均のダウンロード速度 CURLINFO_SPEED_U ... アップロードされた合計サイズ(バイト単位) CURLINFO_SPEED_DOWNLOAD_T - ダウンロードが完了した際にcurlが計測し ... た、平均ダウンロード速度(バイト/毎秒) CURLINFO_SPEED_UPLOAD_T - アップロードが完了した際にcurlが計測した ... "pretransfer_time" "size_upload" "size_download" "speed_download" "speed_upload" "download_content_length" ...
https://man.plustar.jp/php/function.curl-getinfo.html - [similar]
画像をブラウザあるいはファイルに出力する 8552
« imagearc imagebmp » PHP Manual GD および Image 関数 画像をブラウザあるいはファイルに出力する i ... ing | null $file = null , int $quality = -1 , int $speed = -1 ): bool 指定された image から、 AVIF ラスタ画 ... 。 -1 を指定した場合、 デフォルト値 30 を使います。 speed speed はオプションで、 0 (ゆっくり、小さなファイル ...
https://man.plustar.jp/php/function.imageavif.html - [similar]
定義済み定数 8104
« リソース型 例 » PHP Manual cURL 定義済み定数 定義済み定数 以下の定数が定義されています。 この関 ... T ( int ) CURLOPT_FTP_USE_EPSV ( int ) CURLOPT_LOW_SPEED_LIMIT ( int ) CURLOPT_LOW_SPEED_TIME ( int ) CURLO ... ( int ) CURLOPT_PROXYAUTH ( int ) CURLOPT_MAX_RECV_SPEED_LARGE ( int ) cURL 7.15.5 以降で使用可能です。 CUR ... LOPT_MAX_SEND_SPEED_LARGE ( int ) cURL 7.15.5 以降で使用可能です。 CUR ... AD ( int ) CURLINFO_SIZE_DOWNLOAD ( int ) CURLINFO_SPEED_DOWNLOAD ( int ) CURLINFO_SPEED_UPLOAD ( int ) CUR ...
https://man.plustar.jp/php/curl.constants.html - [similar]
Sets the options for rrd graph export 8104
« RRDGraph::saveVerbose RRDUpdater » PHP Manual RRDGraph Sets the options for rrd graph export R ... > 920808000 , "--vertical-label" => "m/s" , "DEF:myspeed= $rrdFile :speed:AVERAGE" , "CDEF:realspeed=myspee ... d,1000,*" , "LINE2:realspeed#FF0000" )); ?> 例2 Set multiple color options <?ph ... GRID#00000000" , "--color=MGRID#00000000" , "DEF:myspeed= $rrdFile :speed:AVERAGE" , "CDEF:realspeed=myspee ... d,1000,*" , "LINE2:realspeed#FF0000" )); ?> Don't use key value syntax for same ...
https://man.plustar.jp/php/rrdgraph.setoptions.html - [similar]
新しいグローバル定数 7604
« 新しく追加された関数 下位互換性のない変更点 » PHP Manual PHP 7.2.x から PHP 7.3.x への移行 新し ... FO_SIZE_DOWNLOAD_T CURLINFO_SIZE_UPLOAD_T CURLINFO_SPEED_DOWNLOAD_T CURLINFO_SPEED_UPLOAD_T CURLINFO_STARTT ...
https://man.plustar.jp/php/migration73.constants.html - [similar]
PREV 1 2 NEXT