Как предлагали другие, для добавления файлов cookie необходимо добавить файл cookie в файл cookie, указанный в свойстве cookie jar curl.
file_put_contents($cookie, ".ebay.com TRUE / FALSE 0 lucky9 ".$lucky9, FILE_APPEND | LOCK_EX,null);
Это то, что я сделал, чтобы вставить cookie в мой cookieFile.
CookieFile содержит cookie в 7 свойствах с разделителями табуляции:
domain - The domain that created AND that can read the variable.
flag - A TRUE/FALSE value indicating if all machines within a given domain can access
the variable. This value is set automatically by the browser, depending on the value you set
for domain.
path - The path within the domain that the variable is valid for.
secure - A TRUE/FALSE value indicating if a secure connection with the domain is needed to access the variable.
expiration - The UNIX time that the variable will expire on. UNIX time is defined as the number of seconds since Jan 1, 1970 00:00:00 GMT.
name - The name of the variable.
value - The value of the variable.
Взят от здесь.