miamiruby / pr

Print Array Nicely

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Print Array Nicely - Version 1.0

by

Introduction

A brief summarization of what PR is:

pr stops you having to use print_r to debug all the dam time

Other tools do this better... we just like KISS and Simple

Features

  • Print var with pre tags

Installation

composer require miamiruby/pr

Usage

Example:

$moo = array('Mike' => 'evil','Mary' => 'good');
pr($moo);

Output:
<pre>
array(
  'Mike' => 'evil',
  'Mary' => 'good'
)
</pre>

Contributing

Please refer to CONTRIBUTING.md for information on how to contribute to PR.

About

Print Array Nicely

License:MIT License


Languages

Language:PHP 100.0%