sandis_m Posted March 20, 2011 Report Share Posted March 20, 2011 (edited) <?php $calc_100 = 1293016920; //MAIN TIME $user_c2 = 1293391686; // SOME USER JOIN TIME $user_c3 = 1300488165; // SOME OTHER USER JOIN TIME $now_t = time(); // NOW TIME // UN TE ES MĒĢINU APRĒĶINĀT LIETOTĀJA // PROCENTUĀLO KOPĀ BŪŠANAS LAIKU, ŅEMOT PAR GALVENO // PIRMĀ REĢISTRĒTĀ LIETOTĀJA LAIKU. // // KAUT KUR SAPUTROJOS, JO, JA LIETOTĀJS IR REĢISTRĒTS ŠAJĀ BRĪDI, // VIŅAM VAJADZĒTU BŪT 0%, JA TUVU PIRMĀ REĢISTRĒTĀ LIETOTĀJA LAIKAM - 99% // KAUT KĀ TĀ... // // GALĪGI TAS PILNMĒNESS NEĻAUJ DOMĀT... echo round(($now_t - $calc_100) / ($user_c3 - $calc_100) * 100 ,0); // ?> Edited March 20, 2011 by who_i_am Quote Link to comment Share on other sites More sharing options...
codez Posted March 20, 2011 Report Share Posted March 20, 2011 (edited) atkarībā no tā, kas domāts ar pirmā reģistrētā lietotāja laiku: ($now_t-$user_c3)/($now_t-$calc_100)*100 vai ($now_t-$user_c3)/($now_t-$user_c2)*100 Edited March 20, 2011 by codez Quote Link to comment Share on other sites More sharing options...
sandis_m Posted March 20, 2011 Author Report Share Posted March 20, 2011 atkarībā no tā, kas domāts ar pirmā reģistrētā lietotāja laiku: ($now_t-$user_c3)/($now_t-$calc_100)*100 vai ($now_t-$user_c3)/($now_t-$user_c2)*100 aha, tas pirmais variants. :) paldies. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.