[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ブログ移転?しました エックスサーバを契約してみたので、 いろいろカスタマイズできそうなWordPressを使って ブログを作ってみました。 https://gametech.vatchlog.com/ 多分こちらでも同じような記事を書いていくと思います。
プログラミングとか徒然を書いていた(過去形)
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
http://packages.couchbase.com/releases/3.0.2/couchbase-server-enterprise-3.0.2-centos6.x86_64.rpm
proxy_cache_path /path levels=1 keys_zone=zone:3000m max_size=3000m inactive=10m
cd /etc/yum.repos.d/
vi CentOS-Testing.repo
[c5-testing]
name=CentOS-5 Testing
baseurl=http://dev.centos.org/centos/$releasever/testing/$basearch/
enabled=0
gpgcheck=1
gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing
yum --enablerepo=c5-testing -y install php-pear
yum --enablerepo=c5-testing -y install php-devel
yum --enablerepo=c5-testing -y install httpd-devel
pecl install pthreads
yum install gcc
pecl install pthreads
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
wget http://jaist.dl.sourceforge.net/project/re2c/re2c/0.13.5/re2c-0.13.5.tar.gz
tar zxvf re2c-0.13.5.tar.gz
cd re2c-0.13.5
./configure
configure: error: C++ compiler cannot create executables
yum install gcc-g++
./configure
make
make install
cd /etc/yum.repos.d/
vi Dag.repo
[dag]
name=Dag
baseurl=http://ftp.riken.jp/Linux/dag/redhat/el$releasever/en/$basearch/dag/
enabled=0
gpgcheck=1
gpgkey=http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt
yum --enablerepo=dag install re2c
pecl install pthreads
configure: error: pthreads requires ZTS, please re-compile PHP with ZTS enabled
nohup [コマンド] &
<?php
//ニコニコ動画の新着動画のID(数字のみ)を引っこ抜いてくる
$body = @file_get_contents('http://www.nicovideo.jp/newarrival');
$newid = html_cut_syutoku($body,"summary=\"sm","\">",0);
echo $newid . "\n";
//指定した文字列間の文字を取ってくる関数
//http://www.blinderhidden.com/moziretsu-string-sitei-syutoku-php-315.htmlを参考(というかもろパクリ)
function html_cut_syutoku($html_buf, $start_buf, $end_buf, $int_positon_cnt){
if(strstr($html_buf, $start_buf)){
$srt_position = strpos($html_buf, $start_buf, $int_positon_cnt);
$srt_position = $srt_position + strlen($start_buf);
$end_position = strpos($html_buf, $end_buf, $srt_position);
$result_buf = substr($html_buf, $srt_position, $end_position-$srt_position);
}else{
$result_buf = "";
}
return $result_buf;
}
?>