Skip to content

Instantly share code, notes, and snippets.

@malikalichsan
Last active June 25, 2019 07:40
Show Gist options
  • Save malikalichsan/7c362fd4aea41e8555ee391020eb96ad to your computer and use it in GitHub Desktop.
Save malikalichsan/7c362fd4aea41e8555ee391020eb96ad to your computer and use it in GitHub Desktop.
Summarize String in PHP
<?php
$data = "1,2,3,4,5,6,7"; // String
$sum = array_sum(explode(',', $data));
print_r($sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment