1. Go to this page and download the library: Download mantas6/fzf-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mantas6 / fzf-php example snippets
use function Mantas6\FzfPhp\fzf;
$selected = fzf(['Apple', 'Orange', 'Grapefruit']);
// returns 'Apple'
$selected = fzf(
options: [
new Model('Apple'), // must implement toArray or PresentsForFinder interface
new Model('Orange'),
new Model('Grapefruit'),
]
);
// returns new Model('Apple')
use Mantas6\FzfPhp\Concerns\PresentsForFinder;
class Model implements PresentsForFinder
{
protected string $name;
public function presentForFinder(): array|string
{
return $this->name;
}
}
cell(
// Text of the cell
value: 'Text displayed',
// Alignment in the table (left, right, center)
align: 'right',
// Foreground color
fg: 'white',
// Background color
bg: 'red',
// Column span
colspan: 2,
);
use function Mantas6\FzfPhp\style;
$selected = fzf(
// ...
preview: function (string $item) {
return style()
->table([
['Original', $item],
['Uppercase', strtoupper($item)],
]);
}
);
use Mantas6\FzfPhp\ValueObjects\FinderEnv;
$selected = fzf(
// ...
preview: function (string $item, FinderEnv $env) {
// ...
$env->key, // The name of the last key pressed
$env->action, // The name of the last action performed
// ...
}
);
use Mantas6\FzfPhp\ValueObjects\FinderEnv;
$selected = fzf(
options: function (FinderEnv $env) {
return [
$env->query,
strtoupper($env->query),
strtolower($env->query),
];
}
);