• skip to content

fl8 Wiki

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: Dokuwiki.fl8.jp » php
Trace: • 2025.03.02 Postfix Logging Headers to Log • mod_suphp • 2025.03.14 Building Zed Editor on Windows • 2025.03.20 Zed Keymap • 2025.01.17 AMD Speculative Return Stack Overflow (SRSO) • Jun 21 2023 Windows2008 Update Failed with Error 800B01009 • 56 PCS コマンド • 2024.01.18 SSL Error in Rails • 2024.05.02 Amazon Linux 2023 Zabbix

php

Search

You can find the results of your search below.

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

Matching pagenames:

  • 01 PHP制御文
  • 02 PHP演算子
  • 03 自動で定義済みの定数
  • 04 変数の型
  • 05 変数
  • 06 名前空間について
  • 07 エラー表示
  • 08 PHP MySQLへ接続できない
  • 10 Class
  • 11 Memcache
  • 12 PHP標準入力
  • 13 composer
  • 14 file_get_contentsのタイムアウト
  • 15 file_get_contents SSL エラー
  • mysql_fetch_arrayの添字
  • 22 mysql_error
  • 97 Eclipse
  • 98 正規表現チェック
  • 01 twigについて
  • 02 twig自動エスケープ(autoescape)
  • 03 twig Debug
  • 04 twig 変数
  • 00 フレームワーク概要
  • 01 Symfony
  • 02 Silex
  • 03 Silex Monolog
  • 04 Doctrine
  • 05 FormServiceProvider
  • 06 Failed to start the session because headers have already been sent.
  • 07 FormServiceProviderでハマったメモ
  • 08 Symfony2のRequestクラス
  • 09 Monolog
  • 10 Zend Framework
  • 11 Doctrine SQL show
  • 89_timezoneを指定してないとエラー
  • 01 URLエンコード(urlencode, rawurlencode)
  • 02 print()
  • 03 strlen()
  • 04 chop()
  • 05 substr()
  • 06 echo()
  • 07 rtrim()
  • 08 trim()
  • 09 curl
  • 10 portチェック関数
  • 11 get_class_methods()
  • 12 get_class()
  • 01 YAML
  • 02 expect
  • 03 libssh2 ssh2_connect
  • 04 json php5.1
  • 05 PEAR::DB
  • 06 PEAR DBがインストールできない
  • 07 PEAR Path 確認
  • 01 Mail class
  • 02 DB接続(Singleton)
  • 10 Laravel セッション
  • 11 Laravel Memo
  • 12 Laravel
  • 13 laravel-admin
  • 14 Laravel Model
  • 15 laravel Eloquent
  • 16 Laravel コマンドラインアプリケーション
  • 17 Laravel 複数データベース接続
  • 18 Laravel Query Builder
  • 20 Laravel timezone
  • 21 Laravel Controller作成からViewまで
  • 22 Laravel-admin viewカスタマイズ
  • 23 Blade コメントアウト
  • 24 Laravel-admin GRUD追加
  • 25 Laravel Model毎にDBを選択
  • 26 Laravel FormBuilder
  • 27 Laravel Voyager
  • 28 Laravel Voyager フロントページ用意
  • 29 Laravel Custom Validation
  • 30 Laravel Mail
  • 31 Bootstrap Version確認
  • 32 Laravel POSTが失敗
  • 33 Laravel Cacheクリア
  • 34 Laravel テーブル更新エラーfillable
  • 35 Laravel Curlの代わりにGuzzleを使う
  • 36 LaravelからArtisanコマンドを実行
  • 37 Laravel Config ge
  • 38 Laravel Eloquent 戻り値
  • 39 Laravel config内でのパス
  • 40 Laravel SSH/SCP
  • 41 Laravel mcrypt depricated error
  • 42 Laravel 認証機能
  • 43 Laravel APIトークン名(api_token)を変更
  • 44 Laravel Voyager generic追加
  • 45 Laravel APIトークンが変わってしまう
  • 46 Laravel log
  • 47 Laravelコマンドからコマンドヘルプを呼び出す

Fulltext results:

27 Laravel Voyager @11_php:02_framework:01_laravel
31 Hits, Last modified: 6 years ago
===== app.phpのProviderに追加 ===== <code|config/app.php> 'providers' => [ ・ ・ TCG\Voyager\VoyagerServiceP... der::class, </code> ===== インストール ===== <code> $ php artisan voyager:install --with-dummy </code> ===... コントローラーカスタマイズ ===== 今回Songsモデルを作成している事を前提に説明 $ php artisan make:model Songs ==== 1.BREADを作成 ==== 作成したSongsモデルから、BREADを作成する {{:11_php:02_framework:01_laravel:voyager.png?400|}} ====
14 Laravel Model @11_php:02_framework:01_laravel
23 Hits, Last modified: 4 years ago
del作成 ===== この場合だと、testテーブルを作成するという意味です。 <code> php artisan make:model Test $ ll app/Test.php -rw-r--r-- 1 matsui users 140 Jan 22 16:49 app/Test.php </code> ==== Modelの中で、テーブル名を指定する場合 ==== <code|app/Test.php > class Test extends Model { protected $table
42 Laravel 認証機能 @11_php:02_framework:01_laravel
22 Hits, Last modified: 5 years ago
ravel 認証機能 ====== ===== make:auth ===== <code> $ php artisan make:auth </code> ===== app/User.php ===== app/User.phpが作成される。 <code> <?php namespace App; use Illuminate\Notifications\Notifiable; use I... => 'datetime', ]; } </code> ===== route/web.php ===== web.phpが更新される。 下記が追加される <code> Auth::route
12 Laravel @11_php:02_framework:01_laravel
18 Hits, Last modified: 6 years ago
/laravel.jp/]] ===== インストール ===== composerは[[11_php:13_composer|こちら]] <code> $ composer global requi... laravel new </code> ===== バージョン確認 ===== <code> $ php artisan --version Laravel Framework 5.7.21 </code... public ・ ・ </code> ==== laravelでサーバを動かす場合 ==== php artisan serve --host 0.0.0.0 ===== コントローラ作成 ===== routes/web.phpに下記行追加 <code|routes/web.php> Route::get('hello', 'HelloController@index'); </
41 Laravel mcrypt depricated error @11_php:02_framework:01_laravel
18 Hits, Last modified: 6 years ago
depricated error ====== ===== エラー ===== <code> PHP Deprecated: Function mcrypt_generic_init() is de... 2/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php on line 1132 PHP Deprecated: Function mcrypt_generic_init() is deprecated in /home/matsui/portal.kumo... 2/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php on line 792 PHP Deprecated: Function mcrypt_gene
28 Laravel Voyager フロントページ用意 @11_php:02_framework:01_laravel
15 Hits, Last modified: 4 years ago
ーラ作成 ※コントローラ内でテーブルを指定しない場合、同じ名前のテーブルを参照する。 <code> php artisan make:model Post </code> 下記ができる <code|app/Post.php> <?php namespace App; use Illuminate\Database\Eloquent\Model; class Post extends Model { // } </code> === 2.ルーティング === <code|routes/web.php> Route::get('/foo', function () { $posts = Ap
10 Zend Framework @11_php:02_framework
14 Hits, Last modified: 9 years ago
rk-1.10.3 /usr/local/ZendFramework </code> ===== php.iniの編集 ===== include_pathにコピーしたパス「/usr/local/ZendFramework/library」を追加する。 include_path = ".:/php/includes:/usr/local/ZendFramework/library" =====... | | | |__HelloController.php | | | |__models/ ... | |__index.php |__.htaccess </code> =====
13 laravel-admin @11_php:02_framework:01_laravel
14 Hits, Last modified: 6 years ago
SSWORD=XXXXXXX </code> ===== インストール ===== ※[[11_php:02_framework:01_laravel:12_laravel |laravel new]]... 後で実行 <code> composer require encore/laravel-admin php artisan vendor:publish --provider="Encore\Admin\AdminServiceProvider" php artisan admin:install </code> ===== エラー1. ===== <code> $ php artisan admin:install Migrating: 2014_10_12_00000
03 自動で定義済みの定数
13 Hits, Last modified: 4 years ago
ス名。 \\ クラス名には、そのクラスが宣言されている名前空間も含みます (例 Foo\Bar)。 PHP 5.4 以降では、__CLASS__ がトレイトでも使えることに注意しましょう。トレイトのメソッド... ki>__NAMESPACE__</nowiki> |現在の名前空間の名前| [[http://php.net/manual/ja/language.constants.predefined.php|自動で定義済みの定数]] ===== 例1. ===== <code> <?php //test_01.php echo "__LINE__ -> ".__LINE__."\n"; echo "
26 Laravel FormBuilder @11_php:02_framework:01_laravel
11 Hits, Last modified: 6 years ago
uilderで作成してみる。 Formをsubmitすると、ただリクエストを表示するだけ。 php artisan make:form Forms/SongForm --fields="name:t... area, publish:checkbox" <code|app/Forms/SongForm.php> <?php namespace App\Forms; use Kris\LaravelFormBuilder\Form; class SongForm extends Form { pub... bmit'); } } </code> ===== コントローラ作成 ===== php artisan make:controller SongsController <code|ap
13 composer
10 Hits, Last modified: 6 years ago
ライブラリ(パッケージ)を管理します。 ライブラリ間の依存関係も解決してくれます。 対応php: php 5.3.2以上 [[https://getcomposer.org/]] <code> php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php composer-setup.php php -r "unlink('composer-setup.php');" </code> ===== composer.json/compos
06 PEAR DBがインストールできない @11_php:04_library
10 Hits, Last modified: 9 years ago
ァイルが壊れてしまっているらしい。。。 <code> # pear install DB pear.php.net is using a unsupported protocal - This should... ode> ===== 対処 ===== <code> # cd `pear config-get php_dir` # mv .channels .channels-broken # pear update-channels Updating channel "doc.php.net" Update of Channel "doc.php.net" succeeded Updating channel "pear.php.net" Update of Channel "pear
43 Laravel APIトークン名(api_token)を変更 @11_php:02_framework:01_laravel
10 Hits, Last modified: 5 years ago
laravel/framework/src/Illuminate/Auth/AuthManager.php: $config['input_key'] ?? 'api_token', ... laravel/framework/src/Illuminate/Auth/AuthManager.php: $config['storage_key'] ?? 'api_token'... /laravel/framework/src/Illuminate/Auth/TokenGuard.php: $inputKey = 'api_token', vendor/laravel/framework/src/Illuminate/Auth/TokenGuard.php: $storageKey = 'api_token', </code> =====
16 Laravel コマンドラインアプリケーション @11_php:02_framework:01_laravel
9 Hits, Last modified: 5 years ago
ーション ====== ===== Commandクラス作成 ===== <code> $ php artisan make:command sample/test $ ll app/Console/Commands/sample/test.php -rw-r--r-- 1 matsui users 677 Jan 30 16:01 app/Console/Commands/sample/test.php </code> ===== Commandのシグネチャ変更 ===== <code|app/Console/Commands/sample/test.php > protected $signature = 'command:name'; ↓ protec
21 Laravel Controller作成からViewまで @11_php:02_framework:01_laravel
9 Hits, Last modified: 6 years ago
作成からViewまで ====== ===== Controller作成 ===== $ php artisan make:controller HelloWorld $ ll app/Http/Controllers/HelloWorld.php -rw-r--r-- 1 matsui users 117 Mar 19 16:36 app/Http/Controllers/HelloWorld.php <code|app/Http/Controllers/HelloWorld.php> <?php namespace App\Http\Controllers; use Illuminate\Htt
22 Laravel-admin viewカスタマイズ @11_php:02_framework:01_laravel
9 Hits, Last modified: 6 years ago
02 PHP演算子
8 Hits, Last modified: 11 years ago
02 Silex @11_php:02_framework
8 Hits, Last modified: 11 years ago
02 DB接続(Singleton) @11_php:05_class
8 Hits, Last modified: 10 years ago
01 PHP制御文
6 Hits, Last modified: 10 years ago
10 Class
6 Hits, Last modified: 8 years ago
01 Symfony @11_php:02_framework
6 Hits, Last modified: 11 years ago
04 json php5.1 @11_php:04_library
6 Hits, Last modified: 10 years ago
29 Laravel Custom Validation @11_php:02_framework:01_laravel
6 Hits, Last modified: 6 years ago
30 Laravel Mail @11_php:02_framework:01_laravel
6 Hits, Last modified: 3 years ago
04 変数の型
5 Hits, Last modified: 11 years ago
01 URLエンコード(urlencode, rawurlencode) @11_php:03_function
5 Hits, Last modified: 11 years ago
24 Laravel-admin GRUD追加 @11_php:02_framework:01_laravel
5 Hits, Last modified: 6 years ago
07 エラー表示
4 Hits, Last modified: 10 years ago
14 file_get_contentsのタイムアウト
4 Hits, Last modified: 5 years ago
97 Eclipse
4 Hits, Last modified: 11 years ago
05 FormServiceProvider @11_php:02_framework
4 Hits, Last modified: 11 years ago
17 Laravel 複数データベース接続 @11_php:02_framework:01_laravel
4 Hits, Last modified: 6 years ago
08 PHP MySQLへ接続できない
3 Hits, Last modified: 6 years ago
11 Memcache
3 Hits, Last modified: 11 years ago
12 PHP標準入力
3 Hits, Last modified: 9 years ago
00 フレームワーク概要 @11_php:02_framework
3 Hits, Last modified: 9 years ago
02 print() @11_php:03_function
3 Hits, Last modified: 11 years ago
03 strlen() @11_php:03_function
3 Hits, Last modified: 4 years ago
04 chop() @11_php:03_function
3 Hits, Last modified: 11 years ago
05 substr() @11_php:03_function
3 Hits, Last modified: 4 years ago
07 rtrim() @11_php:03_function
3 Hits, Last modified: 10 years ago
08 trim() @11_php:03_function
3 Hits, Last modified: 9 years ago
02 expect @11_php:04_library
3 Hits, Last modified: 10 years ago
05 PEAR::DB @11_php:04_library
3 Hits, Last modified: 9 years ago
01 Mail class @11_php:05_class
3 Hits, Last modified: 7 years ago
05 変数
2 Hits, Last modified: 11 years ago
98 正規表現チェック
2 Hits, Last modified: 11 years ago
06 echo() @11_php:03_function
2 Hits, Last modified: 11 years ago
09 curl @11_php:03_function
2 Hits, Last modified: 5 years ago
10 portチェック関数 @11_php:03_function
2 Hits, Last modified: 10 years ago
01 YAML @11_php:04_library
2 Hits, Last modified: 10 years ago
03 libssh2 ssh2_connect @11_php:04_library
2 Hits, Last modified: 10 years ago
07 PEAR Path 確認 @11_php:04_library
2 Hits, Last modified: 6 years ago
25 Laravel Model毎にDBを選択 @11_php:02_framework:01_laravel
2 Hits, Last modified: 6 years ago
35 Laravel Curlの代わりにGuzzleを使う @11_php:02_framework:01_laravel
2 Hits, Last modified: 4 years ago
37 Laravel Config ge @11_php:02_framework:01_laravel
2 Hits, Last modified: 6 years ago
44 Laravel Voyager generic追加 @11_php:02_framework:01_laravel
2 Hits, Last modified: 5 years ago
45 Laravel APIトークンが変わってしまう @11_php:02_framework:01_laravel
2 Hits, Last modified: 5 years ago
46 Laravel log @11_php:02_framework:01_laravel
2 Hits, Last modified: 5 years ago
15 file_get_contents SSL エラー
1 Hits, Last modified: 5 years ago
mysql_fetch_arrayの添字
1 Hits, Last modified: 6 years ago
04 Doctrine @11_php:02_framework
1 Hits, Last modified: 11 years ago
89_timezoneを指定してないとエラー @11_php:02_framework
1 Hits, Last modified: 11 years ago
11 get_class_methods() @11_php:03_function
1 Hits, Last modified: 9 years ago
12 get_class() @11_php:03_function
1 Hits, Last modified: 9 years ago
10 Laravel セッション @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
15 laravel Eloquent @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
20 Laravel timezone @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
33 Laravel Cacheクリア @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
34 Laravel テーブル更新エラーfillable @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
39 Laravel config内でのパス @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
40 Laravel SSH/SCP @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