Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php function findSeparator($content) { $rows = explode("\n", $content); $counts = array( ';' => 0, ',' => 0, "\t" => 0 ); foreach ($rows as $row) { if (strpos($row, ';') !== false) { $counts[';']++; } if (strpos($row, ',') !== false) { $counts[',']++; } if (strpos($row, "\t") !== false) { $counts["\t"]++; } } arsort($counts); return key($counts); } $content = "Строка1,строка2;строка3 Строка1;строка2;строка3 Строка1,строка2,строка3"; $separator = findSeparator($content); echo "Наиболее часто используемый разделитель: $separator";
Copy Clear