Merge CSV files on GCS using PHP [closed] - php

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have multiple small CSV files in a GCS bucket. I'm trying to merge those into a single large CSV file.
I've seen it can be done using "gsutil compose" command, but I was wondering if that can be done using the PHP Google Cloud Storage API.

You can use the the Client Library that references this other link. And the code should be something like this
$sourceObjects = ['log1.txt', 'log2.txt'];
$singleObject = $bucket->compose($sourceObjects, 'combined-logs.txt');

Related

android - Is possible delete a file from external/internal storage from PHP? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I need to remove a file from internal/external storage in smartphone that have my app installed, using PHP. I can't update my app if I don't remove this file.
How can I do it?
Thanks
Directly you can't do that but there should be workaround using some other methods like:
Push Notifications
Schedulers that checks URL endpoint with command logic
as web and PHP don't have any kind of accessing mobile device directly

How to use Plesk api with php? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am trying to use the plesk api in order to use some of its data to a web application and more specifically the data usage and the permitted storage.
I found this article but I wasn't able to find some php code on how I ll retrieve and display the data. Any guidance would be highly appreciated.
Have you checked https://docs.plesk.com/en-US/17.0/api-rpc/creating-client-software/sending-request-packets.28727/?
It shows how to create requests and next page shows response structure.
PHP examples are at https://github.com/plesk/api-examples/tree/master/php.
To display data you will have to parse the xml result first. You can use SimpleXML to do this.

PHP Generating .zpl files [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I wrote web service which will generate label from certain parameters and will return it as PDF. Now I must improve it by returning generated label as PDF or ZPL format.
Unfortunately, I have zero knowledge on working with ZPL. What is ZPL? Is it some kind of file format? What is used for? How its generated? Any open-source PHP libraries for it?
It would be nice if someone would provide some whitepapers or some kind of reference about ZPL.
Web service is written in PHP.
I think you are looking for this information:
https://en.wikipedia.org/wiki/Zebra_(programming_language)

PHP - Values into any document file [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
my question is about PHP values into any file like:
.odt
.doc
.docx
.pdf
Is it possible to "transport" some of value from PHP e.x. $customer_name, into ready template of file? (.odt, .doc, .docx)
Thanks for answer.
Sure. For Word-like documents, you can use e.g. PHPWord: https://phpword.codeplex.com/
For PDF, there are plenty of libs. For easy and fast results, try fdpf: http://fpdf.de/

PHP $_FILES file details [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
It might be a strange question but I am asked if it is possible and I don't know the answer.
In Windows it is possible to add details to a file, like an author and labels etc.
Is there any way in PHP I can read these details when this file is uploaded to the server (our client would like to use it to tag files on their server).
That information you mention it's called metadata.
You can use this php library to do the trick.
http://getid3.sourceforge.net/
Out of the box functionality doesn't pass this information when uploading files using PHP.
The documentation for $_FILES shows all of the details you can get about the file

Categories