php artisan make:command XXX
app\Console\Commands\ 會產生XXX
signature -> 執行的排程名稱
handle -> 要執行的寫這
app\Console\Kernel.php
schedule -> 定義所有要執行的排程
$schedule->command('xxx')->everyMinute(); // 每分鐘執行一次
composer require jackcc/sms $sms = Sms(['username' => '', 'password' => '']); $sms->send('0912345678', '王小明', '訊息'); <?php namespace Jack\Sms; use Exception; class Sms {
Jun 25, 2022新版本Mariadb安裝後無法登入問題的解決 https://www.itread01.com/p/1382338.html
Mar 14, 2022購物清單 渲染購物清單,在要放迴圈的範圍加上v-for 官方說 加個key會比較好各自操作 => :key 單純顯示資料,用 {{ }} 裝參數。如果要做四則運算ok {{a+b}}。 但不要額外加其他字串做合併,渲染會出問題。像是圖片路徑加資料夾。所以路徑的字串都要直接給完整。 如果有綁屬性,則要在屬性前加「:」 => :alt, :src 不需再用{{ }} 包住 按扭事件如click, change,則加「@」 => @click, @change v-if 的結果 都是true/false,控制是否顯示
Dec 21, 2021用地址找經緯度 public function address_geo($address) { $address = urlencode($address); $url = 'https://maps.googleapis.com/maps/api/geocode/json?address='.$address.'&sensor=false&key='.$this->gmap_key; $curl = curl_init(); $options = array( CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => 1, CURLOPT_CONNECTTIMEOUT => 5,
Oct 3, 2021or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up