Convert numeric to roman numeric in php and jquery PHP Function to convert descimal numeric to roman numeric <?php function getRomanNumeric($yournumber) { $n = intval($yournumber); $res = ''; $roman_numeric = array( 'M' => 1000, 'CM' => 900, 'D' => 500, 'CD' => 400, 'C' => 100, 'XC' => 90, 'L' => 50, 'XL' => 40, 'X' => 10, 'IX' => 9, 'V' => 5, 'IV' => 4, 'I' => 1); foreach ($roman_numeric as $roman => $numeric) { $matches = intval($n / $numeric); $res .= str_repeat($roman, $matches); $n = $n % $numeric; } return $res; } echo getRomanNumeric(2); ////Ouput of convert numeric to roman numeric - II ?> jQuery function to convert decimal numeric to roman numeric function convertToRoman(num) { var roman = ""; var l...
PHP,WORDPRESS,CAKEPHP,JQUERY,PHP TUTORIALS,CAKEPHP TUTORIALS,JQUERY CODES, CSS CODES, HTML CODES,EXPO, React, React Native, Angular,OOPS ,PHP INTERVIEW QUESTIONS @shubham715