我正在开发一个PHP项目我只想知道是否可以将doc / pdf文件转换为csv文件格式然后我就可以将它导入数据库(mysql)。
我已经尝试了每个教程但未能得到答案
答案 0 :(得分:0)
您可以使用以下源代码示例,使用Cloud API(低级别)在PHP中将数据从PDF提取到CSV。
代码示例(PDF到CSV):
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
Bytescout\Client\API\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Bytescout\Client\API\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');
$api_instance = new Swagger\Client\Api\DefaultApi();
$pages = pages_example; // String | Comma-separated list of page indices (or ranges) to process. Leave empty for all pages. Example: '0,2-5,7-'.
$name = name_example; // String | File name for generated result.
$url = url_example; // String | URL of the source PDF file.
try {
$result = $api_instance->pdfConvertToCsvPost($pages, $name, $url);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->pdfConvertToCsvPost: ', $e->getMessage(), PHP_EOL;
}
?>