カテゴリー: programming
Vket Cloud
WEBサービスの作り方
ディープ ラーニング入門
DockerDesktopが起動しない場合の対処方法
https://engineer-ninaritai.com/docker-desktop-not-work/
PHP スコープ
<?php
$rate = 1.1; //グローバルスコープ
function sum($a, $b, $c)
{
// global $rate;
$rate = 1.08; //ローカルスコープ
return ($a + $b + $c) * $rate;
}
echo sum(100, 200, 300) + sum(300, 400, 500) . PHP_EOL; //1944
PHP return
<?php
function sum($a, $b, $c)
{
// echo $a + $b + $c . PHP_EOL;
return $a + $b + $c;
echo ‘Here!’ .PHP_EOL;
}
sum(100, 200, 300);//600
sum(300, 400, 500);//1200
echo sum(100, 200, 300) + sum(300, 400, 500) .PHP_EOL;//1800
【heroku】デプロイの方法、appの削除
https://qiita.com/yu731994/items/86e03c5ff91aa3ba7e9d
Git Commitを実行したら、「Author identity unknown」エラー
https://yutaka-gakushu.com/tips/git/author-identity-unknown-error
Github WEB Page
https://yujiromx.com/github-site/