/PHP

functions, tips and helps

Primary LanguagePHP

#PHP Helper functions, tips and helps

Array methods:

  • Implode Implodes an array in a string separated by an string entry

    • string implode ( string $delimiter , array $pieces );
  • Explode Exoplodes an string separated by a string entry in an array of elements

    • array explode ( string $delimiter , string $string [, int $limit ] );

Image Downloaders