Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to understand how PHP uses Laravel helper function dd globally

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article shows you how to understand the global use of PHP Laravel helper function dd, the content is concise and easy to understand, absolutely can make your eyes bright, through the detailed introduction of this article, I hope you can get something.

Dump () method

Global composer.json

"require": {"squizlabs/php_codesniffer": "*", "fxp/composer-asset-plugin": "^ 1.4", "symfony/var-dumper": "3.3.16"}

Configure PHP.ini

Auto_prepend_file = "C:UsersMSAppDataRoamingComposervendorautoload.php"

Update Composer

Composer global update

Restart apache after updating and you can use the function dump () globally.

Dd () method

Global composer.json

# add autoload "autoload": {"files": ["D:/web/php/debugHelper.php"]}

Create a new debugHelper.php

# install symfony/var-dump to your project# composer require symfony/var-dumper// use namespaceuse ComponentVarDumperClonerVarCloner;use ComponentVarDumperDumperCliDumper;use ComponentVarDumperDumperHtmlDumper as SymfonyHtmlDumper;/** * Class HtmlDumper * / class HtmlDumper extends SymfonyHtmlDumper {/ * * large column PHP globally uses the Laravel helper function ddnt "> * Colour definitions for output. * * @ var array * / protected $styles = ['default' = >' background-color:#fff; color:#222; line-height:1.2em; font-weight:normal; font:12px Monaco, Consolas, monospace; word-wrap: break-word; white-space: pre-wrap; position:relative Zmuri indexVl1000 million, 'num' = >' color:#a71d5d', 'const' = >' color:#795da3', 'str' = >' color:#df5000', 'cchr' = >' color:#222', 'note' = >' color:#a71d5d', 'ref' = >' color:#a0a0a0', 'public' = >' color:#795da3', 'protected' = >' color:#795da3', 'private' = >' color:#795da3', 'meta' = >' color:#b729d9'' 'key' = >' color:#df5000', 'index' = >' color:#a71d5d',] } / * * Class Dumper * / class Dumper {/ * Dump a value with elegance. * * @ param mixed $value * @ return void * / public function dump ($value) {if (class_exists (CliDumper::class)) {$dumper = 'cli' = = PHP_SAPI? New CliDumper: new HtmlDumper; $dumper- > dump ((new VarCloner)-> cloneVar ($value));} else {var_dump ($value);} if (! Function_exists ('dd')) {/ * Dump the passed variables and end the script. * * @ param mixed * @ return void * / function dd (. $args) {foreach ($args as $x) {(new Dumper)-> dump ($x);} die (1);}} if (! Function_exists ('dda')) {/ * Dump the passed array variables and end the script. * * @ param mixed * @ return void * / function dda (. $args) {foreach ($args as $x) {(new Dumper)-> dump ($x-> toArray ());} die (1);}}

Update composer auto-load

Composer global dump-autoload

After the update, the function dd () can be used globally.

The above is how to understand the global use of PHP Laravel helper function dd, have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report