Indent String

Add indentation to each line of a string.

Code

General
preg_replace('/^/m', str_repeat(' ', $spaces), $s);

Parameters

Multi-line string

Number of spaces to indent

Server

More PHP Snippets