-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneralizador.php
60 lines (51 loc) · 1.54 KB
/
generalizador.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
setlocale(LC_CTYPE, 'es_AR.UTF8');
function read_table($name,&$table){
$full_table = file_get_contents($name);
$nombres = explode("\n", $full_table);
foreach($nombres as $nombre){
$table[mb_strtoupper($nombre)] = 1;
}
}
if($_POST['text']){
header("Content-Type: text/plain");
// leer tablas
$male = array();
read_table("wiki-male.names",$male);
read_table("wiki-male.names,ascii",$male);
$female = array();
read_table("wiki-female.names",$female);
read_table("wiki-female.names,ascii",$female);
// determino genero
$nombres_totales = explode("\n", $_POST['text']);
foreach($nombres_totales as $nombre_total){
$nombre_total = trim($nombre_total);
$nombres = explode(" ", $nombre_total);
$primer_nombre = $nombres[0];
if($_POST['apellido']){
$primer_nombre = $nombres[1];
}
if(isset($male[$primer_nombre])){
echo "$nombre_total,m\n";
} elseif(isset($female[$primer_nombre])){
echo "$nombre_total,f\n";
} else {
echo "$nombre_total\n";
}
}
}else{
?>
<html><head><title>Determinacion de genero a partir de nombres propios</title>
<body>
<h1>Determinacion de genero a partir de nombres propios</h1>
<p>Ingrese un nombre por renglon:</p>
<form method="post">
<textarea name="text" cols=60 rows=20></textarea><br>
Apellido primero? <input type="checkbox" name="apellido"><br>
<input type="submit">
</form>
</body>
</html>
<?php
}
?>