網路上的window.speechSynthesis教學主要都只有說切換指定語言
像是這樣就能切換成中文語音:
const synth = window.speechSynthesis;
const speak = (msg) => {| { | |
| "always_show_minimap_viewport": true, | |
| "atomic_save": true, | |
| "binary_file_patterns": | |
| [ | |
| "*.jpg", | |
| "*.jpeg", | |
| "*.png", | |
| "*.gif", | |
| "*.ttf", |
| # 设置方法: | |
| # git config --global core.excludesfile ~/.gitignore_global | |
| #compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so |
| <?php | |
| error_reporting(1); | |
| $target = __DIR__ . '/../website.com'; // 生产环境web目录 | |
| $token = '您在coding填写的hook令牌'; | |
| $wwwUser = 'apache'; | |
| $wwwGroup = 'apache'; | |
| $json = json_decode(file_get_contents('php://input'), true); |
| version: '2' | |
| services: | |
| # The Application | |
| app: | |
| build: | |
| context: ./ | |
| dockerfile: php-fpm.dockerfile | |
| working_dir: /var/www | |
| volumes: | |
| - ./:/var/www |
| /** | |
| * @param SymfonyStyle $io | |
| * @param $remotePath | |
| * | |
| * @return string | |
| */ | |
| public function download(SymfonyStyle $io, $remotePath) | |
| { | |
| $io->section("Download " . $remotePath); | |
| $parts = parse_url($remotePath); |
Translations: Korean (by Yongwoo Lee)
Laravel has a powerful Inversion of Control (IoC) / Dependency Injection (DI) Container. Unfortunately the official documentation doesn't cover all of the available functionality, so I decided to experiment with it and document it for myself. The following is based on Laravel 5.4.26 - other versions may vary.
I won't attempt to explain the principles behind DI / IoC here - if you're not familiar with them you might want to read What is Dependency Injection? by Fabien Potencier (creator of the Symfony framework).
| <?php | |
| // prepare headers for API call | |
| $request_headers = array(); | |
| // prepare the url of the api I am calling | |
| $api_url = "http://api.example.com?parameters=whatever"; | |
| // append streamdata sandbox proxy | |
| $url = 'https://streamdata.motwin.net/' . $api_url; |