登入雲主機的方法
1 開啟mac 終端
密碼是:*******
進入之後 cd /var/www/html/api/
可以看到data, jindu ,kaidu,等資料夾
這些檔案裡面都有3個檔案
data.txt
get.php
post.php
1<?php
2$file = fopen("data.txt","r」);
3 $data = file_get_contents("data.txt」);
4$data1="+".$data;
5echo
$data1;
6 ?>
7 post.php
<?php
2$file=fopen("data.txt","w」);
3 $data=$_get['data』];
4 if(fwrite($file,$data)) else
9 ?>
data.txt
123留給外界的介面是:
取資料存資料
其中訪問資料都是對data.txt裡面的字串進行操作
所以每乙個資料來源對應的是乙個資料夾
比如 經度 就存放在jindu這個資料夾
緯度 就存放在weidu這個資料夾
都沒有問題
但是用微控制器連線出現了問題
推測原因是微控制器 不能像手機和瀏覽器處理get 請求那樣強大的功能。
所以微控制器連線後每傳送一次資料就耗時特別嚴重。導致不能實時修改資料和更新資料
下面連個是網上找的tcp服務端和客戶端**
服務端
server.c
#include
#include
#include
#include
int main(int argc, char **argv)
close(connfd);
close(listenfd);
return
1;}
客戶端
client.c
#include
#include
#include
#include
int main(int argc, char **argv)
以上兩個**的位址 SSI 伺服器端嵌入
ssi 簡介 伺服器端嵌入 server side include,是一種類似於asp的基於伺服器的網頁製作技術。大多數 尤其是基於unix平台 的web伺服器如netscape enterprise server等均支援ssi命令。另外,在計算機硬體領域ssi是同步序列介面 synchronous...
mysql 嵌入式c 嵌入式MYSQL伺服器實現
嵌入式mysql伺服器實現 embeddedmysql.h inte ce for the cembeddedmysql class.if defined afx embeddedmysql h 516724e2 889c 4899 9dae 330cd4c5954f included defi 嵌...
git伺服器端建立專案
cd myproject 你建立的專案資料夾 git init 執行git的本地初始化 git add 將所有的檔案新增到版本控制系統 git commit m initial commit 在本地提交到版本庫 git remote add origin git 116.255.160.144 sr...