ap_to_dot_notation( boolean|string $path = false )
Description #
Convert array notation (string, not real array) to dot notation.
Parameters #
- $pathboolean | string (Optional) Path name. Default value: false
Source #
File: includes/functions.php
function ap_to_dot_notation( $path = false ) { $parsed = rtrim( str_replace( '..', '.', str_replace( array( ']', '[' ), '.', $path ) ), '.' ); return $parsed; }
Expand full source code Collapse full source code View on GitHub: includes/functions.php:1993
Add your comment