Skip to content

Instantly share code, notes, and snippets.

View cbtech-mo's full-sized avatar

mohamedbensalah cbtech-mo

  • casabou
  • Tunis, Tunisia
View GitHub Profile
@azimidev
azimidev / calculate_profile_percentage.php
Last active July 11, 2022 01:51
Calculates how much percentage of a profile is completed. It stripes off timestamps like created_at updated_at and primary keys like ids. Usually beneficial when using Laravel
<?php
/**
* Calculate how much a profile is completed
*
* @param $profile
* @return float|int
*/
function calculate_profile($profile)
{
if ( ! $profile) {