Answers for "php remove first line from string"

PHP
11

remove first letter php

<?php
echo substr('abcdef', 1);     // bcdef
?>
Posted by: Guest on June-03-2020
1

php remove everything after character

$fullpath = 'folderName/file.ext';
$folder = substr($fullpath, 0, strpos($fullpath, '/'));
echo $folder;
// Output => folderName
Posted by: Guest on March-10-2020

Code answers related to "php remove first line from string"

Browse Popular Code Answers by Language