What is the best practice to create a custom helper function in php Laravel 5?(在 php Laravel 5 中创建自定义辅助函数的最佳实践是什么?)
问题描述
默认的 created_at 日期继续打印为 MySQL 格式:2015-06-12 09:01:26.我想像 12/2/2017
一样以我自己的方式打印它,以及未来的其他格式.
the default created_at date keep printing out as an MySQL format : 2015-06-12 09:01:26. I wanted to print it as my own way like 12/2/2017
, and other formats in the future.
一个名为 DataHelper.php
的文件并将其存储在 /app/Helpers/DateHelper.php
- 它看起来像这样
a file called DataHelper.php
and store it at /app/Helpers/DateHelper.php
- and it looks like this
<?php
namespace AppHelpers;
class DateHelper {
public static function dateFormat1($date) {
if ($date) {
$dt = new DateTime($date);
return $dt->format("m/d/y"); // 10/27/2014
}
}
}
我想要
能够在我的刀片视图中调用它
I want
to be able to called it in my blade view like
DateHelper::dateFormat1($user->created_at)
我不知道接下来要做什么.
I'm not sure what to do next.
在 php Laravel 5 中创建自定义辅助函数的最佳实践是什么?
推荐答案
- 在您的
app/Http
目录中,创建一个helpers.php
文件并添加您的函数. - 在
composer.json
中,在autoload
块中,添加"files": ["app/Http/helpers.php"]
. - 运行
composer dump-autoload
- Within your
app/Http
directory, create ahelpers.php
file and add your functions. - Within
composer.json
, in theautoload
block, add"files": ["app/Http/helpers.php"]
. - Run
composer dump-autoload
应该可以.:)
这篇关于在 php Laravel 5 中创建自定义辅助函数的最佳实践是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 php Laravel 5 中创建自定义辅助函数的最佳实践
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01