Search

Showing 7 of 1,975 result(s)

/blog/2018/04/11/laravel-5-creating-combinations-of-elements-with-crossjoin

The crossJoin method can be used to combine the input arrays; the resulting array will contain all of the possible combinations of the input array values.The signature of the crossJoin method is: If you are unfamiliar with the ...$arrays syntax,...

/blog/2018/04/22/laravel-5-collections-transforming-collection-element-keys-with-keyby

The keyBy method is used to create a new Collection instance where the keys of the new key/value pairs are determined by a $keyBy callback function (a string value can also be supplied instead of a function). The signature of the callback function...

/site-essentials-for-statamic/v1/resolving-metadata-variables

Site Essentials for Statamic attempts to locate data from various locations within your template's context, depending on the precise tag being built. Almost all builder methods can have their values customized. The simplest way to customize the...

/blog/2016/11/21/laravel-miscellaneous-helper-function-tap

…ction is used to call a given Closure (provided as an argument to the $callback parameter) with the given $value . The tap helper function will return the reference to the original $value as its return value. This allows you to call any number of...

/blog/2023/12/10/that-escalated-quickly-all-the-new-things#content-site-essentials-for-statamic

…p websites. Handfuls of Antlers tags and modifiers, : Site Essentials ships with many different types of Antlers tags and modifiers. Examples include capturing sections of a template to be emitted later, creating unique IDs for HTML elements, and...

/blog/2013/10/29/passing-data-to-php-anonymous-functions

…r new array. For the purpose of this post, let's say we wanted to store the value to check against in its own variable like this: If we try to run this we code we will get an error similar to this: Notice: Undefined variable: valueToCheckAgainst...

/blog/2021/02/15/implementing-a-customer-dsl-parser-in-php#content-implementing-string-escape-sequences

…decided that our string escape character would be a backslash character ( \ ). When the escape character is encountered we need to check the character that follows, and if it is either a single quote ( ' ) or another backslash ( \ ), we will...