• skip to content

fl8 Wiki

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: Dokuwiki.fl8.jp » id
Trace: • 2022.08.19 ubuntu update-initramfs 失敗 • 2023.06.23 ChatGPT Clone to LibreChat • 2025.04.15 Wifiルータ WRC-X3000GS3-B • 2022.02.08 Excel 表に棒グラフを表示 • 2024.11.20 Bitwarden App: An Error Occurred

id

Search

You can find the results of your search below.

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

Matching pagenames:

  • 05 FormServiceProvider
  • 07 FormServiceProviderでハマったメモ
  • 29 Laravel Custom Validation

Fulltext results:

29 Laravel Custom Validation @11_php:02_framework:01_laravel
26 Hits, Last modified: 7 years ago
====== 29 Laravel Custom Validation ====== Laravelでカスタムバリデーションを作成する方法 ===== サービスプロバイダ作成 ===== php artisan make:provider ValidatorServiceProvider <code|app/Providers/ValidatorServiceProvider.php> namespace App\Providers; use I
43 Laravel APIトークン名(api_token)を変更 @11_php:02_framework:01_laravel
19 Hits, Last modified: 6 years ago
TokenGuard; use Illuminate\Contracts\Auth\UserProvider; use Illuminate\Http\Request; use Illuminate\Su... * @param \Illuminate\Contracts\Auth\UserProvider $provider * @param \Illuminate\Http\Request $request * @return void */ public function __construct(UserProvi
05 FormServiceProvider @11_php:02_framework
17 Hits, Last modified: 11 years ago
====== 05 FormServiceProvider ====== フォームが簡単に作成できる。 ・controler <code> <?php require_once __DIR__.'/vendor/autoload.php'; use Silex\Provider\FormServiceProvider; $app = new Silex\Application(); $app['debug'] = true; $app->register(new FormServiceProvider()); $app->register(new Silex\Provider\Translati
27 Laravel Voyager @11_php:02_framework:01_laravel
8 Hits, Last modified: 6 years ago
er require tcg/voyager </code> ===== app.phpのProviderに追加 ===== <code|config/app.php> 'providers' => [ ・ ・ TCG\Voyager\VoyagerServiceProvider::class, </code> ===== インストール ===== <code> $ php art... k:01_laravel:voyager.png?400|}} ==== 2.View OverRide ==== 今回の場合、slug-naeがsongsになります。 resources/views
mysql_fetch_arrayの添字
5 Hits, Last modified: 7 years ago
from test; +----+-----------------+-----------+ | id | ip | hostname | +----+-----------... de> === 結果 === == MYSQL_BOTH == <code> Array ( [id] => 1 [0] => 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... test2) </code> == MYSQL_ASSOC== <code> Array ( [id] => 1 [ip] => 192.168.1.1 [hostname] => test1) Ar
07 FormServiceProviderでハマったメモ @11_php:02_framework
5 Hits, Last modified: 11 years ago
====== 07 FormServiceProviderでハマったメモ ====== ちょっとハマったのでメモしておく。 formタグの外にボタンを置いて、submitした場合は動作しなかった ・下記の場合は動作する。 <code> <form> {{ form_widget(form2) }} <button id="submit">submit</button> </form> </code> ・下記の場合は動作しない。 <code> <form> {{ form_widget(form2) }} </form> <button id="submit">submit</
13 laravel-admin @11_php:02_framework:01_laravel
5 Hits, Last modified: 7 years ago
re/laravel-admin php artisan vendor:publish --provider="Encore\Admin\AdminServiceProvider" php artisan admin:install </code> ===== エラー1. ===== <code> $ p... sers' already exists (SQL: create table `users` (`id` int unsigned not null auto_increment primary key... ば、191 * 4 = 764bytesのため、エラーが発生しない。 <code|app/Providers/AppServiceProvider.php> use Illuminate\Support
01 twigについて @11_php:01_twig
4 Hits, Last modified: 11 years ago
テンプレートへのパス <code> $app->register(new Silex\Provider\TwigServiceProvider(), array( 'twig.path' => __DIR__ . '/views', )); </code> レンダリング <code>... もできる。 <code console> $app->register(new Silex\Provider\TwigServiceProvider(), array( 'twig.path' => __DIR__ . '/views', 'twig.options' => array( '
03 Silex Monolog @11_php:02_framework
4 Hits, Last modified: 7 years ago
=== 03 Silex Monolog ====== <code> use Silex\Provider\MonologServiceProvider; $app->register(new Silex\Provider\MonologServiceProvider(), array( 'monolog.name' => 'AAAA', 'monolog.logfile' => __DIR__.'/log/m
42 Laravel 認証機能 @11_php:02_framework:01_laravel
4 Hits, Last modified: 6 years ago
]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ... new controller instance. * * @return void */ public function __construct() { $this->middleware('auth'); } /** * Show the ap
28 Laravel Voyager フロントページ用意 @11_php:02_framework:01_laravel
3 Hits, Last modified: 5 years ago
rc="{{ Voyager::image( $post->image ) }}" style="width:100%"> <span>{{ $post->title }}</span> ... rc="{{ Voyager::image( $post->image ) }}" style="width:100%"> <p>{!! $post->body !!}</p> </div... c="{{ Voyager::image( $pages->image ) }}" style="width:100%"> <p>{!! $pages->body !!}<
02 twig自動エスケープ(autoescape) @11_php:01_twig
2 Hits, Last modified: 7 years ago
// autoescapeを無効にする。 $app->register(new Silex\Provider\TwigServiceProvider(), array( 'twig.path' => __DIR__ . '/views', 'twig.options' => array( 'autoe
04 Doctrine @11_php:02_framework
2 Hits, Last modified: 11 years ago
しておく。 <code console> $app->register(new Silex\Provider\DoctrineServiceProvider(), array( 'db.options' => array( 'dbname' => 'データベース名', 'user'
89_timezoneを指定してないとエラー @11_php:02_framework
2 Hits, Last modified: 11 years ago
'form', $data) ->add('run_time', 'date', array( 'widget' => 'single_text', 'input' => 'string', ->getF... warning, you most likely misspelled the timezone identifier. We selected 'Asia/Tokyo' for 'JST/9.0/no
01 Mail class @11_php:05_class
2 Hits, Last modified: 8 years ago
/** * 入力チェック */ public function validation() { $ret = array('status' => 0, 'mes... d() { // 先ずはチェック $ret = $this->validation(); // エラーがある場合は終了 if ($ret[
34 Laravel テーブル更新エラーfillable @11_php:02_framework:01_laravel
2 Hits, Last modified: 7 years ago
35 Laravel Curlの代わりにGuzzleを使う @11_php:02_framework:01_laravel
2 Hits, Last modified: 5 years ago
39 Laravel config内でのパス @11_php:02_framework:01_laravel
2 Hits, Last modified: 6 years ago
06 Failed to start the session because headers have already been sent. @11_php:02_framework
1 Hits, Last modified: 11 years ago
05 PEAR::DB @11_php:04_library
1 Hits, Last modified: 10 years ago
15 laravel Eloquent @11_php:02_framework:01_laravel
1 Hits, Last modified: 6 years ago
17 Laravel 複数データベース接続 @11_php:02_framework:01_laravel
1 Hits, Last modified: 7 years ago
30 Laravel Mail @11_php:02_framework:01_laravel
1 Hits, Last modified: 4 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