• skip to content

fl8 Wiki

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: Dokuwiki.fl8.jp » name
Trace: • Mar 8 2023 SSH Error no hostkey alg • 2025.02.28 初の渋谷サウナス • 2021.12.30 Docker Dokuwiki bitnami • 2008.04.16 /etc/passwdのコピー • 2006.09.29 MRTGが変 • 2021.03.05 Thinkpad X1 nano ついに届く • 2022.10.01 Nextcloud • 2015.12.04 Atomでfont変更 • 2017.11.13 GlusterFS 3.12 • Jun 17 2023 Docker logs tail

name

Search

You can find the results of your search below.

Ends with
  • Exact match
  • Starts with
  • Ends with
  • Contains
@11_php
  • Any namespace
  • 11_php:02_framework (22)
  • 11_php:03_function (2)
  • 11_php:05_class (2)
  • 11_php:04_library (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • 06 名前空間について

Fulltext results:

05 FormServiceProvider @11_php:02_framework
14 Hits, Last modified: 11 years ago
unction() use($app) { $data = array( 'name' => 'Your name', 'email' => 'Your email', ); $form = $app['form.factory']->createBuilder('form', $data) ->add('name') ->add('email') ->add('gender', ... {{ form_widget(form) }} <input type="submit" name="submit" /> </form> </body> </html> </code> ====
01 Mail class @11_php:05_class
8 Hits, Last modified: 7 years ago
var $body = ''; var $from = ''; var $fromName = ''; var $header = ''; /** * 入力チェッ... his->from = trim($this->from); $this->fromName = trim($this->fromName); $this->header = trim($this->header); if (!is_array($this->to)... ; // FROM作成 if (empty($this->fromName)) { $this->header .= "From: {$this->f
17 Laravel 複数データベース接続 @11_php:02_framework:01_laravel
8 Hits, Last modified: 7 years ago
7.0.0.1 DB_PORT=3306 DB_DATABASE=database1 DB_USERNAME=root DB_PASSWORD=secret DB_CONNECTION_SECOND=my... T_SECOND=3306 DB_DATABASE_SECOND=database2 DB_USERNAME_SECOND=root DB_PASSWORD_SECOND=secret </code> ==... , 'database' => env('DB_DATABASE'), 'username' => env('DB_USERNAME'), 'password' => env('DB_PASSWORD'), ], 'mysql2' => [ 'driver' => e
29 Laravel Custom Validation @11_php:02_framework:01_laravel
7 Hits, Last modified: 6 years ago
* @return bool */ public function validateName($attribute, $value, $parameters) { if... ===== <code> resources/lang/ja/validation.php 'name' => 'The :attribute no valid name', 'attributes' => [ ... 'family_name_name' => 'ふりがな(せい)', </code> ===== カスタムバリデーションを利
mysql_fetch_arrayの添字
5 Hits, Last modified: 7 years ago
-------+-----------+ | id | ip | hostname | +----+-----------------+-----------+ | 1 | 19... => 1 [ip] => 192.168.1.1 [1] => 192.168.1.1 [hostname] => test1 [1] => test1) Array ( [id] => 2 [0] => 2 [ip] => 192.168.1.2 [1] => 192.168.1.2 [hostname] => test2 [1] => test2) </code> == MYSQL_ASSOC==... <code> Array ( [id] => 1 [ip] => 192.168.1.1 [hostname] => test1) Array ( [id] => 2 [ip] => 192.168.1.2
02 Silex @11_php:02_framework
5 Hits, Last modified: 11 years ago
'; $app = new Silex\Application(); $app->get('/{name}', function ($name) use ($app) { return 'Hello '.$app->escape($name); }); $app->run(); </code> 環境 ^ サーバIP ^ Documen... RewriteBase /tools RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d
02 DB接続(Singleton) @11_php:05_class
5 Hits, Last modified: 10 years ago
y( 'host' => '[host]', 'db' => '[db_name]', 'user' => '[db_user]', 'password... sic = 'mysql:host=' . static::$conf['host'] . ';dbname='.static::$conf['db']; $this->_db = n... ib/Database.php'); Database::$conf['host']='[host_name]'; $dbh = Database::getDb(); </code> ===== PHP... y( 'host' => '[host]', 'db' => '[db_name]', 'user' => '[db_user]', 'password
16 Laravel コマンドラインアプリケーション @11_php:02_framework:01_laravel
4 Hits, Last modified: 6 years ago
sample/test.php > protected $signature = 'command:name'; ↓ protected $signature = 'command:test'; prote... code> public function handle() { $name = $this->argument("name"); $this->info("Hello $name"); } </code> ===== オプションを指定する場合 ===== オプション指定 protected $sig
30 Laravel Mail @11_php:02_framework:01_laravel
4 Hits, Last modified: 4 years ago
MAIL_HOST=mail.hogehoge.net MAIL_PORT=25 MAIL_USERNAME=info@hogehoge.net MAIL_PASSWORD=hogepassword MAIL... ources/views/mail/MailSend.blade.php {{$content->name}} さんはじめまして。 テストメール </code> ===== 4.mailableクラスの... uminate\Support\Facades\Mail; $contents->name = $request->get('name'); Mail::to('to@hogehoge.net') ->bcc('bcc@hogehoge.net')
40 Laravel SSH/SCP @11_php:02_framework:01_laravel
4 Hits, Last modified: 6 years ago
'host' => '10.11.10.11', 'username' => 'hogehoge', 'password' => 'hoge... ); Config::set('remote.connections.production.username', 'XXXXXX'); Config::set('remote.connections.prod... '' \SSH::into('production')->run(array( 'hostname', 'uptime', ),function($line){ $output .=... '' \SSH::into('production')->run(array( 'hostname', 'uptime', ),function($line) use(&$output){
05 PEAR::DB @11_php:04_library
3 Hits, Last modified: 10 years ago
へ接続する。DB::connect ==== DB::connect(DBタイプ://username:password@プロトコル+ホスト名/データベース名) |DBタイプ|データベース名("pgs... 」で区切って指定する) \\ ※ ローカルホストの場合は"localhost"と指定 | |username|DBへログインするユーザー名| |password|DBへログインするユーザーのパスワード| =... FETCHMODE_ASSOC)){ echo $row["ID"] . ":" .$row["NAME"]; } </code> ==== レコードの行数(レコード数)を取得するnumRows()
26 Laravel FormBuilder @11_php:02_framework:01_laravel
3 Hits, Last modified: 7 years ago
php artisan make:form Forms/SongForm --fields="name:text, lyrics:textarea, publish:checkbox" <code|a... uildForm() { $this ->add('name', 'text') ->add('lyrics', 'textarea')... php> Route::any('song','SongsController@create')->name('song'); </code> ===== view追加 ===== <code|resou
27 Laravel Voyager @11_php:02_framework:01_laravel
3 Hits, Last modified: 6 years ago
songsになります。 resources/views/vendor/voyager/[slug-name] 以下にbrose.blade.phpとedit-add.blade.phpを置けばオーバライドさ... te::get('songs','Voyager\SongsController@index')->name('voyager.songs.index')->middleware('admin.user');... e::post('songs','Voyager\SongsController@index')->name('voyager.songs.index')->middleware('admin.user');
09 curl @11_php:03_function
2 Hits, Last modified: 5 years ago
== POST == <code> $PASSWORD = 'hogehoge'; $USERNAME = 'hoge'; $POST_DATA = array( 'foo' => 'bar'... FALSE); curl_setopt($conn, CURLOPT_USERPWD, $USERNAME . ":" . $PASSWORD); $ret = curl_exec($conn); curl
12 Laravel @11_php:02_framework:01_laravel
2 Hits, Last modified: 7 years ago
laravel newしたとする <code> <VirtualHost *:80> ServerName hogehoge.com DocumentRoot /var/www/vhost/hogehoge... new [--dev] [--5.2] [--] [<name>] 対応 <code> # yum install php-pecl-zip </code>
13 laravel-admin @11_php:02_framework:01_laravel
2 Hits, Last modified: 7 years ago
37 Laravel Config ge @11_php:02_framework:01_laravel
2 Hits, Last modified: 6 years ago
42 Laravel 認証機能 @11_php:02_framework:01_laravel
2 Hits, Last modified: 6 years ago
47 Laravelコマンドからコマンドヘルプを呼び出す @11_php:02_framework:01_laravel
2 Hits, Last modified: 4 years ago
03 自動で定義済みの定数
1 Hits, Last modified: 4 years ago
08 PHP MySQLへ接続できない
1 Hits, Last modified: 6 years ago
15 file_get_contents SSL エラー
1 Hits, Last modified: 6 years ago
03 Silex Monolog @11_php:02_framework
1 Hits, Last modified: 7 years ago
04 Doctrine @11_php:02_framework
1 Hits, Last modified: 11 years ago
10 Zend Framework @11_php:02_framework
1 Hits, Last modified: 10 years ago
11 get_class_methods() @11_php:03_function
1 Hits, Last modified: 9 years ago
14 Laravel Model @11_php:02_framework:01_laravel
1 Hits, Last modified: 4 years ago
22 Laravel-admin viewカスタマイズ @11_php:02_framework:01_laravel
1 Hits, Last modified: 7 years ago
39 Laravel config内でのパス @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
43 Laravel APIトークン名(api_token)を変更 @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
46 Laravel log @11_php:02_framework:01_laravel
1 Hits, Last modified: 5 years ago

Page Tools

  • Show page
  • Old revisions
  • Backlinks
  • Back to top
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Noncommercial-Share Alike 4.0 International
CC Attribution-Noncommercial-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki