Created
April 14, 2015 16:57
-
-
Save mizofumi/10b9f99686788e9e6983 to your computer and use it in GitHub Desktop.
TvTestRemoteClientExample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $socket = @fsockopen('127.0.0.1', 17000, $errno, $errstr, 30); | |
| if ( ! $socket ) { | |
| return $errno . ': ' . $errstr; | |
| } | |
| //データ送信(コメントを解除している部分が実行されます) | |
| fputs($socket, 'VolUp'); //ボリューム上げ | |
| //fputs($socket, 'VolDown'); //ボリューム下げ | |
| //fputs($socket, 'ChPrev'); //前のチャンネル | |
| //fputs($socket, 'ChNext'); //次のチャンネル | |
| //fputs($socket, 'Ch1'); //チャンネル1 | |
| //fputs($socket, 'Fullscreen'); //全画面 | |
| //fputs($socket, 'Mute'); //ミュート | |
| //fputs($socket, 'Rec'); //録画 | |
| //fputs($socket, 'Cap'); //画像保存 | |
| //fputs($socket, 'Tvprogram'); //番組表 | |
| //fputs($socket, 'Front'); //前面に表示 | |
| //fputs($socket, 'Sound'); //音声切替 | |
| //fputs($socket, 'Startup'); //起動 | |
| //fputs($socket, 'Shutdown'); //終了 | |
| fclose($socket); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment